chiark / gitweb /
Fix small issue in import.py
authorDaniel Martí <mvdan@mvdan.cc>
Sun, 8 Jun 2014 19:36:22 +0000 (21:36 +0200)
committerDaniel Martí <mvdan@mvdan.cc>
Wed, 11 Jun 2014 20:48:12 +0000 (22:48 +0200)
fdroidserver/import.py

index 27b0c90bac758528a1306114b8e4dc060c9e3048..c8b3bbdb9ac3a827dd348b37bf0d3ee0b9532775 100644 (file)
@@ -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'