From 25e093936d31dba3d5b042f842566729fb01668c Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Thu, 22 Oct 2020 09:27:11 -0500 Subject: blackify --- src/waitress/server.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/waitress/server.py b/src/waitress/server.py index 631780b..b37980e 100644 --- a/src/waitress/server.py +++ b/src/waitress/server.py @@ -305,8 +305,8 @@ class BaseWSGIServer(wasyncore.dispatcher): ): self.in_connection_overflow = True self.logger.warning( - 'total open connections reached the connection limit, ' - 'no longer accepting new connections' + "total open connections reached the connection limit, " + "no longer accepting new connections" ) elif ( self.in_connection_overflow @@ -314,8 +314,8 @@ class BaseWSGIServer(wasyncore.dispatcher): ): self.in_connection_overflow = False self.logger.info( - 'total open connections dropped below the connection limit, ' - 'listening again' + "total open connections dropped below the connection limit, " + "listening again" ) return not self.in_connection_overflow return False -- cgit v1.2.1