diff hgext/hgk.py @ 8624:2b3dec0ef3ae

replace xrange(0, n) with xrange(n)
author Martin Geisler <mg@lazybytes.net>
date Mon, 25 May 2009 23:06:11 +0200
parents 94ca38e63576
children 9e055cfdd620
line wrap: on
line diff
--- a/hgext/hgk.py	Mon May 25 22:54:16 2009 +0200
+++ b/hgext/hgk.py	Mon May 25 23:06:11 2009 +0200
@@ -188,7 +188,7 @@
             else:
                 i -= chunk
 
-            for x in xrange(0, chunk):
+            for x in xrange(chunk):
                 if i + x >= count:
                     l[chunk - x:] = [0] * (chunk - x)
                     break