Removed translation of dashes to slashes.

This commit is contained in:
Rudi Grinberg 2012-09-10 16:30:18 -04:00
parent 4fe8407659
commit fdc7245a15
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ def normalized_metadata(md, original_path):
"""
new_md = copy.deepcopy(md)
# replace all slashes with dashes
for k,v in new_md.iteritems(): new_md[k] = unicode(v).replace('/','-')
#for k,v in new_md.iteritems(): new_md[k] = unicode(v).replace('/','-')
# Specific rules that are applied in a per attribute basis
format_rules = {
'MDATA_KEY_TRACKNUMBER' : parse_int,