From: Ciaran Gultnieks Date: Tue, 6 Mar 2012 23:15:34 +0000 (+0000) Subject: Recognise MIT license on Google Code in importer X-Git-Tag: 0.1~858 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=7a47c26fd5641009b191ff7babeb8cf4888048b1;p=fdroidserver.git Recognise MIT license on Google Code in importer --- diff --git a/import.py b/import.py index 33a704c5..c8910f59 100755 --- a/import.py +++ b/import.py @@ -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)