Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c04709c commit 741bac4Copy full SHA for 741bac4
python2.7/music-organizer.py
@@ -65,7 +65,7 @@ def toNeat(s):
65
s = s.lower().replace("&", "and")
66
67
# Put spaces between and remove blank characters.
68
- blankCharsPad = r"()\[\],.\\\?\#/\!\$\:"
+ blankCharsPad = r"()\[\],.\\\?\#/\!\$\:\;"
69
blankCharsNoPad = r"'\""
70
s = re.sub(r"([" + blankCharsPad + r"])([^ ])", "\\1 \\2", s)
71
s = re.sub("[" + blankCharsPad + blankCharsNoPad + "]", "", s)
0 commit comments