From 505068d38f7a83c3a7fee80b90bddb822d1547fd Mon Sep 17 00:00:00 2001 From: Leon Blakey Date: Sun, 31 Aug 2014 12:39:37 -0400 Subject: [PATCH] Fix comment herdoc --- rtorrent/torrent.py | 2 +- rtorrent/tracker.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rtorrent/torrent.py b/rtorrent/torrent.py index 9790b41..a158651 100755 --- a/rtorrent/torrent.py +++ b/rtorrent/torrent.py @@ -350,7 +350,7 @@ def add_tracker(self, group, tracker): @return: if successful, 0 @rtype: int - """" + """ m = rtorrent.rpc.Multicall(self) self.multicall_add(m, "d.tracker.insert", group, tracker) diff --git a/rtorrent/tracker.py b/rtorrent/tracker.py index c18299f..b3b7bf9 100644 --- a/rtorrent/tracker.py +++ b/rtorrent/tracker.py @@ -76,7 +76,7 @@ def append_tracker(self, tracker): @return: if successful, 0 @rtype: int - """" + """ m = rtorrent.rpc.Multicall(self) self.multicall_add(m, "d.tracker.insert", self.index, tracker)