Fix flake8 E265 block comment should start with '# '

This commit is contained in:
Labrys of Knossos 2019-04-05 12:42:46 -04:00
parent 5f633b931a
commit a571fc3122
2 changed files with 6 additions and 6 deletions

View file

@ -20,9 +20,9 @@ def sanitize_name(name):
# remove leading/trailing periods and spaces
name = name.strip(' .')
#try:
# try:
# name = name.encode(core.SYS_ENCODING)
#except Exception:
# except Exception:
# pass
return name