##// END OF EJS Templates
py3: don't use str() to stringify pushloc
Yuya Nishihara -
r36749:8988c34b default
parent child Browse files
Show More
@@ -69,6 +69,7 b' test-debugbundle.t'
69 test-debugextensions.t
69 test-debugextensions.t
70 test-debugindexdot.t
70 test-debugindexdot.t
71 test-debugrename.t
71 test-debugrename.t
72 test-default-push.t
72 test-diff-binary-file.t
73 test-diff-binary-file.t
73 test-diff-change.t
74 test-diff-change.t
74 test-diff-copy-depth.t
75 test-diff-copy-depth.t
@@ -1757,7 +1757,7 b' def pushurlpathoption(ui, path, value):'
1757 'ignoring)\n') % path.name)
1757 'ignoring)\n') % path.name)
1758 u.fragment = None
1758 u.fragment = None
1759
1759
1760 return str(u)
1760 return bytes(u)
1761
1761
1762 @pathsuboption('pushrev', 'pushrev')
1762 @pathsuboption('pushrev', 'pushrev')
1763 def pushrevpathoption(ui, path, value):
1763 def pushrevpathoption(ui, path, value):
General Comments 0
You need to be logged in to leave comments. Login now