Skip to content

Commit 54f5f1f

Browse files
committed
👹 Feed the hobgoblins (delint).
1 parent 7aa7450 commit 54f5f1f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎jaraco/net/inet.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def run(self):
110110
except OSError as e:
111111
if e[0] == 10048:
112112
self.output.write(
113-
'Cannot listen on port %d: Address ' 'already in use.\n' % self.port
113+
'Cannot listen on port %d: Address already in use.\n' % self.port
114114
)
115115
else:
116116
raise

‎jaraco/net/stats.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
class PingResult:
1313
def __init__(self, text):
1414
pattern = re.compile(
15-
'time: (?P<time>.*), host: (?P<host>.*), ' 'res: (?P<result>.*)\n'
15+
'time: (?P<time>.*), host: (?P<host>.*), res: (?P<result>.*)\n'
1616
)
1717
res = pattern.match(text).groupdict()
1818
res['time'] = dateutil.parser.parse(res['time'])

0 commit comments

Comments
 (0)