Remove unneeded backslashes.
authorGeorg Brandl <georg@python.org>
Wed, 3 Oct 2012 20:59:26 +0000 (22:59 +0200)
committerGeorg Brandl <georg@python.org>
Wed, 3 Oct 2012 20:59:26 +0000 (22:59 +0200)
irkerd

diff --git a/irkerd b/irkerd
index d9e3a0d5b5f67bac55fcb1a4c0a39c3f768b6b8c..c9bff9792f471e39c28a975e2a94015c24e4c081 100755 (executable)
--- a/irkerd
+++ b/irkerd
@@ -146,7 +146,7 @@ class Connection:
         try:
             self.channels_joined.remove(outof)
         except ValueError:
-            self.irker.logerr("kicked by %s from %s that's not joined" \
+            self.irker.logerr("kicked by %s from %s that's not joined"
                               % (self.servername, outof))
         qcopy = []
         while not self.queue.empty():
@@ -353,7 +353,7 @@ class Irker:
                     m = int(lump[12:])
                     for pref in "#&+":
                         cxt.channel_limits[pref] = m
-                    self.debug(1, "%s maxchannels is %d" \
+                    self.debug(1, "%s maxchannels is %d"
                                % (connection.server, m))
                 elif lump.startswith("CHANLIMIT=#:"):
                     limits = lump[10:].split(",")
@@ -363,7 +363,7 @@ class Irker:
                             limit = int(limit)
                             for c in prefixes:
                                 cxt.channel_limits[c] = limit
-                        self.debug(1, "%s channel limit map is %s" \
+                        self.debug(1, "%s channel limit map is %s"
                                    % (connection.server, cxt.channel_limits))
                     except ValueError:
                         self.logerr("ill-formed CHANLIMIT property")