##// END OF EJS Templates
py3: fix test-diff-color.t...
Mark Thomas -
r40318:e4f82db0 default
parent child Browse files
Show More
@@ -124,6 +124,7 b' test-default-push.t'
124 test-diff-antipatience.t
124 test-diff-antipatience.t
125 test-diff-binary-file.t
125 test-diff-binary-file.t
126 test-diff-change.t
126 test-diff-change.t
127 test-diff-color.t
127 test-diff-copy-depth.t
128 test-diff-copy-depth.t
128 test-diff-hashes.t
129 test-diff-hashes.t
129 test-diff-ignore-whitespace.t
130 test-diff-ignore-whitespace.t
@@ -2480,7 +2480,7 b' def diffsinglehunkinline(hunklines):'
2480 endspaces = chomp[len(token):]
2480 endspaces = chomp[len(token):]
2481 # scan tabs
2481 # scan tabs
2482 for maybetab in tabsplitter.findall(token):
2482 for maybetab in tabsplitter.findall(token):
2483 if '\t' == maybetab[0]:
2483 if b'\t' == maybetab[0:1]:
2484 currentlabel = 'diff.tab'
2484 currentlabel = 'diff.tab'
2485 else:
2485 else:
2486 if changed:
2486 if changed:
General Comments 0
You need to be logged in to leave comments. Login now