1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +02:00

Fix small issue in import.py

This commit is contained in:
Daniel Martí 2014-06-08 21:36:22 +02:00
parent 9bde500765
commit b63ce63017

View 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'