diff mercurial/wireproto.py @ 11879:4e804302d30c

fix undefined variables, spotted by pylint
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Sun, 15 Aug 2010 11:05:04 +0200
parents 04f76a954842
children 210049a8d16e
line wrap: on
line diff
--- a/mercurial/wireproto.py	Sat Aug 07 16:38:38 2010 -0300
+++ b/mercurial/wireproto.py	Sun Aug 15 11:05:04 2010 +0200
@@ -5,7 +5,7 @@
 # This software may be used and distributed according to the terms of the
 # GNU General Public License version 2 or any later version.
 
-import urllib, tempfile, os
+import urllib, tempfile, os, sys
 from i18n import _
 from node import bin, hex
 import changegroup as changegroupmod
@@ -36,7 +36,7 @@
         try:
             return decodelist(d[:-1])
         except:
-            self.abort(error.ResponseError(_("unexpected response:"), d))
+            self._abort(error.ResponseError(_("unexpected response:"), d))
 
     def branchmap(self):
         d = self._call("branchmap")