1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 18:50:11 +02:00

Recognise MIT license on Google Code in importer

This commit is contained in:
Ciaran Gultnieks 2012-03-06 23:15:34 +00:00
parent 1d62f6ec85
commit 7a47c26fd5

View File

@ -160,6 +160,8 @@ def main():
license = 'GPLv2'
elif ltext == 'Apache License 2.0':
license = 'Apache2'
elif ltext == 'MIT License':
license = 'MIT'
else:
print "License " + ltext + " is not recognised"
sys.exit(1)