cc-4305: removed extra commas that don't do anything
This commit is contained in:
parent
7f66bdbb66
commit
8a490c3aa4
|
@ -293,7 +293,7 @@ def organized_path(old_path, root_path, orig_md):
|
|||
if is_airtime_recorded(normal_md):
|
||||
title_re = re.match("(?P<show>\w+)-(?P<date>\d+-\d+-\d+-\d+:\d+:\d+)$",
|
||||
normal_md['MDATA_KEY_TITLE'])
|
||||
show_name, = title_re.group('show'),
|
||||
show_name = title_re.group('show')
|
||||
date = title_re.group('date').replace(':','-')
|
||||
yyyy, mm, _ = normal_md['MDATA_KEY_YEAR'].split('-',2)
|
||||
fname_base = '%s-%s-%s.%s' % \
|
||||
|
|
Loading…
Reference in New Issue