diff mercurial/httprangereader.py @ 1559:59b3639df0a9

Convert all classes to new-style classes by deriving them from object.
author Eric Hopper <hopper@omnifarious.org>
date Fri, 18 Nov 2005 22:48:47 -0800
parents 4b0f562c61f4
children f5046cab9e2e
line wrap: on
line diff
--- a/mercurial/httprangereader.py	Thu Nov 17 19:38:57 2005 +0100
+++ b/mercurial/httprangereader.py	Fri Nov 18 22:48:47 2005 -0800
@@ -7,7 +7,7 @@
 
 import byterange, urllib2
 
-class httprangereader:
+class httprangereader(object):
     def __init__(self, url):
         self.url = url
         self.pos = 0