changeset 7881:3ac7114c2555

kill another trailing space
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Mon, 23 Mar 2009 13:49:16 +0100
parents 7ca2be800804
children 8d78fc991b71
files mercurial/pure/base85.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/pure/base85.py	Mon Mar 23 13:43:48 2009 +0100
+++ b/mercurial/pure/base85.py	Mon Mar 23 13:49:16 2009 +0100
@@ -25,7 +25,7 @@
     longs = len(text) >> 2
     words = struct.unpack('>%dL' % (longs), text)
 
-    out = ''.join(_b85chars[(word / 52200625) % 85] + 
+    out = ''.join(_b85chars[(word / 52200625) % 85] +
                   _b85chars2[(word / 7225) % 7225] +
                   _b85chars2[word % 7225]
                   for word in words)