Update cc.py

pull/94/head
eric 2019-07-01 16:25:18 -04:00
parent 0d748b2498
commit 1c5c48ac42
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ def match_license(license_string):
pass
lic = MATCH_CC_LICENSE.search(license_string)
if lic:
return 'CC {}'.format(lic.group(0).upper())
return 'CC{}'.format(lic.group(0).upper().strip())
return RIGHTS_ALIAS.get(license_string, None)
MATCH_LICENSE = re.compile(r'creativecommons.org/licenses/([^/]+)/')