From 7a47c26fd5641009b191ff7babeb8cf4888048b1 Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Tue, 6 Mar 2012 23:15:34 +0000 Subject: [PATCH] Recognise MIT license on Google Code in importer --- import.py | 2 ++ 1 file changed, 2 insertions(+) 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) -- 2.30.2