mercurial/templatefilters.py
changeset 40029 e2697acd9381
parent 38783 e7aa113b14f7
child 41997 4df7c4b70e03
--- a/mercurial/templatefilters.py	Tue Oct 02 12:43:54 2018 -0700
+++ b/mercurial/templatefilters.py	Wed Oct 03 10:27:44 2018 -0700
@@ -200,7 +200,7 @@
             if not m:
                 uctext = encoding.unifromlocal(text[start:])
                 w = len(uctext)
-                while 0 < w and uctext[w - 1].isspace():
+                while w > 0 and uctext[w - 1].isspace():
                     w -= 1
                 yield (encoding.unitolocal(uctext[:w]),
                        encoding.unitolocal(uctext[w:]))