##// END OF EJS Templates
diff: always use / in paths in diff...
Mads Kiilerich -
r15437:8f08b635 default
parent child Browse files
Show More
@@ -100,6 +100,9 b' def unidiff(a, ad, b, bd, fn1, fn2, r=No'
100 return ""
100 return ""
101 epoch = util.datestr((0, 0))
101 epoch = util.datestr((0, 0))
102
102
103 fn1 = util.pconvert(fn1)
104 fn2 = util.pconvert(fn2)
105
103 if not opts.text and (util.binary(a) or util.binary(b)):
106 if not opts.text and (util.binary(a) or util.binary(b)):
104 if a and b and len(a) == len(b) and a == b:
107 if a and b and len(a) == len(b) and a == b:
105 return ""
108 return ""
General Comments 0
You need to be logged in to leave comments. Login now