fix strip
parent
917d90aee1
commit
ac599f5d69
|
@ -162,7 +162,7 @@ def match_license(license_string):
|
|||
pass
|
||||
lic = MATCH_CC_LICENSE.search(license_string)
|
||||
if lic:
|
||||
return 'CC{}'.format(lic.group(0).upper().strip())
|
||||
return 'CC{}'.format(lic.group(0).upper()).strip()
|
||||
return RIGHTS_ALIAS.get(license_string, None)
|
||||
|
||||
MATCH_LICENSE = re.compile(r'creativecommons.org/licenses/([^/]+)/')
|
||||
|
|
Loading…
Reference in New Issue