From: Daniel Martí Date: Sun, 8 Jun 2014 19:36:22 +0000 (+0200) Subject: Fix small issue in import.py X-Git-Tag: 0.2~37 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=b63ce63017d459d69525cea56d2a05feae592488;p=fdroidserver.git Fix small issue in import.py --- 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'