Skip to content

Commit 1dbb12e

Browse files
committed
Combine two strings
1 parent 91e3476 commit 1dbb12e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ircurltitlebot/bot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def _msg_channel(self, channel: str) -> NoReturn: # pylint: disable=too-many-lo
8989
if irc.connected:
9090
irc.msg(channel, msg)
9191
log.info(
92-
"Sent outgoing message for %s in %s in %.1fs having content %s for URL %s with %s " "active threads.",
92+
"Sent outgoing message for %s in %s in %.1fs having content %s for URL %s with %s active threads.",
9393
user,
9494
channel,
9595
time.monotonic() - start_time,
@@ -99,7 +99,7 @@ def _msg_channel(self, channel: str) -> NoReturn: # pylint: disable=too-many-lo
9999
)
100100
else:
101101
log.warning(
102-
"Skipped outgoing message for %s in %s in %.1fs having content %s for URL %s with %s " "active threads because the IRC client is not connected.",
102+
"Skipped outgoing message for %s in %s in %.1fs having content %s for URL %s with %s active threads because the IRC client is not connected.",
103103
user,
104104
channel,
105105
time.monotonic() - start_time,

0 commit comments

Comments
 (0)