##// END OF EJS Templates
py3: use '%d' for integers instead of '%s'...
Pulkit Goyal -
r40705:feae4d1f default
parent child Browse files
Show More
@@ -33,7 +33,7 b' def debugremotefilelog(ui, path, **opts)'
33
33
34 size, firstnode, mapping = parsefileblob(path, decompress)
34 size, firstnode, mapping = parsefileblob(path, decompress)
35
35
36 ui.status(_("size: %s bytes\n") % (size))
36 ui.status(_("size: %d bytes\n") % (size))
37 ui.status(_("path: %s \n") % (path))
37 ui.status(_("path: %s \n") % (path))
38 ui.status(_("key: %s \n") % (short(firstnode)))
38 ui.status(_("key: %s \n") % (short(firstnode)))
39 ui.status(_("\n"))
39 ui.status(_("\n"))
General Comments 0
You need to be logged in to leave comments. Login now