From patchwork Sat Dec 19 09:23:59 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: revlog: fix indent (issue5019) From: =?utf-8?q?Andr=C3=A9_Sintzoff?= X-Patchwork-Id: 12183 Message-Id: <005f61f35d13ed295f8f.1450517039@zibeline.local> To: mercurial-devel@selenic.com Date: Sat, 19 Dec 2015 10:23:59 +0100 # HG changeset patch # User André Sintzoff # Date 1450516999 -3600 # Sat Dec 19 10:23:19 2015 +0100 # Branch stable # Node ID 005f61f35d13ed295f8f369c75cf74a9c6bee287 # Parent e240e914d2261788c3ba700401659c11ed820fe3 revlog: fix indent (issue5019) diff -r e240e914d226 -r 005f61f35d13 mercurial/revlog.py --- a/mercurial/revlog.py Thu Dec 17 17:16:02 2015 -0800 +++ b/mercurial/revlog.py Sat Dec 19 10:23:19 2015 +0100 @@ -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