mercurial/statichttprepo.py
changeset 25196 7a1af58ab242
parent 24377 656f93ce66d5
child 25660 328739ea70c3
--- a/mercurial/statichttprepo.py	Tue May 19 07:17:57 2015 -0500
+++ b/mercurial/statichttprepo.py	Mon May 18 22:40:16 2015 -0400
@@ -32,11 +32,7 @@
         try:
             f = self.opener.open(req)
             data = f.read()
-            # Python 2.6+ defines a getcode() function, and 2.4 and
-            # 2.5 appear to always have an undocumented code attribute
-            # set. If we can't read either of those, fall back to 206
-            # and hope for the best.
-            code = getattr(f, 'getcode', lambda : getattr(f, 'code', 206))()
+            code = f.code
         except urllib2.HTTPError, inst:
             num = inst.code == 404 and errno.ENOENT or None
             raise IOError(num, inst)