diff mercurial/changelog.py @ 10282:08a0f04b56bd

many, many trivial check-code fixups
author Matt Mackall <mpm@selenic.com>
date Mon, 25 Jan 2010 00:05:27 -0600
parents 25e572394f5c
children 41d0ed2c79df
line wrap: on
line diff
--- a/mercurial/changelog.py	Mon Jan 25 00:05:22 2010 -0600
+++ b/mercurial/changelog.py	Mon Jan 25 00:05:27 2010 -0600
@@ -78,7 +78,7 @@
             doff = self.offset - self.size
             self.data.insert(0, "".join(self.data))
             del self.data[1:]
-            s = self.data[0][doff:doff+count]
+            s = self.data[0][doff:doff + count]
             self.offset += len(s)
             ret += s
         return ret