mercurial/pure/base85.py
changeset 10282 08a0f04b56bd
parent 10263 25e572394f5c
child 16598 20a9d823f242
--- a/mercurial/pure/base85.py	Mon Jan 25 00:05:22 2010 -0600
+++ b/mercurial/pure/base85.py	Mon Jan 25 00:05:27 2010 -0600
@@ -48,7 +48,7 @@
     l = len(text)
     out = []
     for i in range(0, len(text), 5):
-        chunk = text[i:i+5]
+        chunk = text[i:i + 5]
         acc = 0
         for j, c in enumerate(chunk):
             try: