Skip to content

Commit beb96f1

Browse files
committed
Fix syntax error
1 parent 951fc5a commit beb96f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

advanced_new_file/commands/command_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def __contains_non_ascii(self, string):
138138
# Don't really like this....
139139
try:
140140
string.decode("ascii")
141-
except UnicodeEncodeError, e:
141+
except UnicodeEncodeError:
142142
return True
143143
return False
144144

0 commit comments

Comments
 (0)