Skip to content

Commit

Permalink
Combine two strings
Browse files Browse the repository at this point in the history
  • Loading branch information
impredicative committed Jun 8, 2020
1 parent 91e3476 commit 1dbb12e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ircurltitlebot/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def _msg_channel(self, channel: str) -> NoReturn: # pylint: disable=too-many-lo
if irc.connected:
irc.msg(channel, msg)
log.info(
"Sent outgoing message for %s in %s in %.1fs having content %s for URL %s with %s " "active threads.",
"Sent outgoing message for %s in %s in %.1fs having content %s for URL %s with %s active threads.",
user,
channel,
time.monotonic() - start_time,
Expand All @@ -99,7 +99,7 @@ def _msg_channel(self, channel: str) -> NoReturn: # pylint: disable=too-many-lo
)
else:
log.warning(
"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.",
"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.",
user,
channel,
time.monotonic() - start_time,
Expand Down

0 comments on commit 1dbb12e

Please sign in to comment.