Skip to content

Commit

Permalink
Merge pull request #122 from tilezen/flake8
Browse files Browse the repository at this point in the history
Resolve new flake errors
  • Loading branch information
rmarianski authored Oct 23, 2017
2 parents c0b73b8 + f35c13b commit 67c5cf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tileserver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def __call__(self, environ, start_response):
request = Request(environ)
try:
response = self.handle_request(request)
except:
except Exception:
if self.propagate_errors:
raise
stacktrace = format_stacktrace_one_line()
Expand Down

0 comments on commit 67c5cf7

Please sign in to comment.