Skip to content

Commit

Permalink
fix up the file escapes, no need to escape spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaoz committed Nov 7, 2011
1 parent 3bb9d21 commit 0ad3381
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion muname.py
Expand Up @@ -19,7 +19,7 @@
DEFAULT_FORMAT = '{artist}/{album}/{track} - {title}'

_TRACK_RE = re.compile(r'^\d+')
_FILE_ESCAPE_RE = re.compile(r'([\\ ()/])')
_FILE_ESCAPE_RE = re.compile(r'([\\()/])')
_SAFE_TRANS_TABLE = string.maketrans(
':',
'_'
Expand Down

0 comments on commit 0ad3381

Please sign in to comment.