changeset 27441:e47841c8343d stable

revlog: fix bad indentation (replace tab by space)
author Martin von Zweigbergk <martinvonz@google.com>
date Fri, 18 Dec 2015 20:54:41 -0800
parents e240e914d226
children 77c51a56392e 707cdf2c3700
files mercurial/revlog.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/revlog.py	Thu Dec 17 17:16:02 2015 -0800
+++ b/mercurial/revlog.py	Fri Dec 18 20:54:41 2015 -0800
@@ -1438,7 +1438,7 @@
         # We work around this issue by inserting a seek() before writing.
         # Note: This is likely not necessary on Python 3.
         ifh.seek(0, os.SEEK_END)
-	 if dfh:
+        if dfh:
             dfh.seek(0, os.SEEK_END)
 
         curr = len(self) - 1