From b63ce63017d459d69525cea56d2a05feae592488 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Sun, 8 Jun 2014 21:36:22 +0200 Subject: [PATCH] Fix small issue in import.py --- fdroidserver/import.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fdroidserver/import.py b/fdroidserver/import.py index 27b0c90b..c8b3bbdb 100644 --- a/fdroidserver/import.py +++ b/fdroidserver/import.py @@ -139,11 +139,13 @@ def main(): website = "" elif url.startswith('https://github.com'): projecttype = 'github' + repo = url repotype = 'git' sourcecode = url issuetracker = url + '/issues' elif url.startswith('https://gitlab.com/'): projecttype = 'gitlab' + repo = url repotype = 'git' sourcecode = url issuetracker = url + '/issues'