fix unused variable warning from pychecker
authorBenoit Boissinot <benoit.boissinot@ens-lyon.org>
Sat, 17 Jun 2006 18:15:48 +0200
changeset 2449 6ff30968f911
parent 2442 c660691fb45d
child 2450 b93cab5ed776
fix unused variable warning from pychecker
mercurial/sshrepo.py
--- a/mercurial/sshrepo.py	Thu Jun 15 17:07:30 2006 -0700
+++ b/mercurial/sshrepo.py	Sat Jun 17 18:15:48 2006 +0200
@@ -136,8 +136,7 @@
 
     def changegroup(self, nodes, kind):
         n = " ".join(map(hex, nodes))
-        f = self.do_cmd("changegroup", roots=n)
-        return self.pipei
+        return self.do_cmd("changegroup", roots=n)
 
     def unbundle(self, cg, heads, source):
         d = self.call("unbundle", heads=' '.join(map(hex, heads)))