We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acf0635 commit 550dae9Copy full SHA for 550dae9
pymodbus/server/async_io.py
@@ -110,8 +110,8 @@ def connection_lost(self, exc):
110
self._log_exception()
111
else: # pragma: no cover
112
if hasattr(self, "client_address"): # TCP connection
113
- _logger.debug("Client Disconnection [%s:%s] due "
114
- "to %s" % (*self.client_address, exc))
+ _logger.debug("Client Disconnection {} due "
+ "to {}".format(*self.client_address, exc))
115
116
self.running = False
117
setup.py
@@ -104,7 +104,8 @@
104
'repl:python_version >= "3.6"': [
105
'click>=7.0',
106
'prompt-toolkit>=3.0.8',
107
- 'pygments>=2.2.0'
+ 'pygments>=2.2.0',
108
+ 'aiohttp>=3.7.3'
109
]
},
entry_points={
0 commit comments