Skip to content

Commit

Permalink
style: line break
Browse files Browse the repository at this point in the history
  • Loading branch information
pajod committed Aug 14, 2024
1 parent 8617c39 commit ef94875
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gunicorn/workers/base_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ def handle(self, listener, client, addr):
else:
self.log.debug("Ignoring EPIPE")
except self.WORKAROUND_BASE_EXCEPTIONS as e:
self.log.warning("Catched async exception (compat workaround). If this is not a bug in your app, please file a report.")
self.log.warning("Catched async exception (compat workaround). "
"If this is not a bug in your app, please file a report.")
self.handle_error(req, client, addr, e)
except Exception as e:
self.handle_error(req, client, addr, e)
Expand Down

0 comments on commit ef94875

Please sign in to comment.