cc-4305: removed extra commas that don't do anything

This commit is contained in:
Rudi Grinberg 2012-08-28 10:52:20 -04:00
parent 7f66bdbb66
commit 8a490c3aa4
1 changed files with 1 additions and 1 deletions

View File

@ -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' % \