# HG changeset patch # User Martin von Zweigbergk # Date 1450500881 28800 # Node ID e47841c8343d06b91637c84866bf1469b835b1f7 # Parent e240e914d2261788c3ba700401659c11ed820fe3 revlog: fix bad indentation (replace tab by space) diff -r e240e914d226 -r e47841c8343d mercurial/revlog.py --- 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