##// END OF EJS Templates
py3: use %d instead of %s for integers...
Pulkit Goyal -
r30611:cbc61b1b default
parent child Browse files
Show More
@@ -1892,7 +1892,7 b' def debuginstall(ui, **opts):'
1892 fm.write('pythonexe', _("checking Python executable (%s)\n"),
1892 fm.write('pythonexe', _("checking Python executable (%s)\n"),
1893 sys.executable)
1893 sys.executable)
1894 fm.write('pythonver', _("checking Python version (%s)\n"),
1894 fm.write('pythonver', _("checking Python version (%s)\n"),
1895 ("%s.%s.%s" % sys.version_info[:3]))
1895 ("%d.%d.%d" % sys.version_info[:3]))
1896 fm.write('pythonlib', _("checking Python lib (%s)...\n"),
1896 fm.write('pythonlib', _("checking Python lib (%s)...\n"),
1897 os.path.dirname(os.__file__))
1897 os.path.dirname(os.__file__))
1898
1898
General Comments 0
You need to be logged in to leave comments. Login now