Skip to content

Commit

Permalink
Resolve latest flake8 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Oct 24, 2017
1 parent fee73ef commit 05778d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[flake8]
ignore=D202,D203,D401,N802
ignore=D202,D203,D401,N802,E741
max-line-length=120
exclude=st3/mdpopups/png.py,site/*.py
2 changes: 1 addition & 1 deletion st3/mdpopups/st_color_scheme_matcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def translate_color(m, var, var_src):
elif groups.get('x11colors'):
try:
color = x11colors.name2hex(m.group('x11colors')).lower()
except:
except Exception:
pass
elif groups.get('color'):
content = m.group('color')
Expand Down

0 comments on commit 05778d6

Please sign in to comment.