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)