##// END OF EJS Templates
py3: use '%d' for integers instead of '%s'...
Pulkit Goyal -
r40980:78951590 default
parent child Browse files
Show More
@@ -1870,11 +1870,11 b' class overlayworkingctx(committablectx):'
1870 # files.
1870 # files.
1871 if 'l' in self.p1()[component].flags():
1871 if 'l' in self.p1()[component].flags():
1872 raise error.Abort("error: %s conflicts with symlink %s "
1872 raise error.Abort("error: %s conflicts with symlink %s "
1873 "in %s." % (path, component,
1873 "in %d." % (path, component,
1874 self.p1().rev()))
1874 self.p1().rev()))
1875 else:
1875 else:
1876 raise error.Abort("error: '%s' conflicts with file '%s' in "
1876 raise error.Abort("error: '%s' conflicts with file '%s' in "
1877 "%s." % (path, component,
1877 "%d." % (path, component,
1878 self.p1().rev()))
1878 self.p1().rev()))
1879
1879
1880 # Test that each new directory to be created to write this path from p2
1880 # Test that each new directory to be created to write this path from p2
General Comments 0
You need to be logged in to leave comments. Login now