cc-4305: Fixed bug + added test.

This commit is contained in:
Rudi Grinberg 2012-08-28 11:54:35 -04:00
parent 03015ac89c
commit a276e1c2c6
2 changed files with 21 additions and 2 deletions

View file

@ -290,8 +290,9 @@ def organized_path(old_path, root_path, orig_md):
normal_md['MDATA_KEY_BITRATE'] = formatted + 'kbps'
else: normal_md['MDATA_KEY_BITRATE'] = unicode_unknown
if is_airtime_recorded(normal_md):
title_re = re.match("(?P<show>\w+)-(?P<date>\d+-\d+-\d+-\d+:\d+:\d+)$",
title_re = re.match("(?P<show>.+)-(?P<date>\d+-\d+-\d+-\d+:\d+:\d+)$",
normal_md['MDATA_KEY_TITLE'])
show_name = title_re.group('show')
date = title_re.group('date').replace(':','-')