mirror of
https://github.com/evilhero/mylar
synced 2024-12-21 23:32:23 +00:00
FIX: fix for ½ symbol causing a traceback error for some series
This commit is contained in:
parent
9022d16951
commit
85f295976d
1 changed files with 2 additions and 1 deletions
|
@ -1131,7 +1131,8 @@ class FileChecker(object):
|
|||
if alt_series is not None:
|
||||
if 'XCV' in alt_series:
|
||||
alt_series = re.sub('XCV', x, alt_series,1)
|
||||
elif 'XCV' in alt_issue:
|
||||
if alt_issue is not None:
|
||||
if 'XCV' in alt_issue:
|
||||
alt_issue = re.sub('XCV', x, alt_issue,1)
|
||||
|
||||
series_name = re.sub('c11', '+', series_name)
|
||||
|
|
Loading…
Reference in a new issue