From dd62de03843a038f75a983967757687ac1794a4f Mon Sep 17 00:00:00 2001 From: "Leo R. Lundgren" Date: Wed, 5 Mar 2014 05:12:21 +0100 Subject: [PATCH] Fix whitespace (tabs -> spaces). --- library/notification/irc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/notification/irc b/library/notification/irc index 5fa05c41488..e3d5e65d66a 100644 --- a/library/notification/irc +++ b/library/notification/irc @@ -122,8 +122,8 @@ def send_msg(channel, msg, server='localhost', port='6667', start = time.time() while 1: motd += irc.recv(1024) - # The server might send back a shorter nick than we specified (due to NICKLEN), - # so grab that and use it from now on (assuming we find the 00[1-4] response). + # The server might send back a shorter nick than we specified (due to NICKLEN), + # so grab that and use it from now on (assuming we find the 00[1-4] response). match = re.search('^:\S+ 00[1-4] (?P\S+) :', motd, flags=re.M) if match: nick = match.group('nick')