Submitter | phabricator |
---|---|
Date | Feb. 7, 2018, 11:23 a.m. |
Message ID | <099b39ccaad4a28d217725798c71d7dc@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/27415/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/tests/test-annotate.py b/tests/test-annotate.py --- a/tests/test-annotate.py +++ b/tests/test-annotate.py @@ -27,7 +27,7 @@ def decorate(text, rev): return ([annotateline(fctx=rev, lineno=i) - for i in xrange(1, text.count(b'\n') + 1)], + for i in range(1, text.count(b'\n') + 1)], text) # Basic usage