equal
deleted
inserted
replaced
2738 fm.write('pythonver', _("checking Python version (%s)\n"), |
2738 fm.write('pythonver', _("checking Python version (%s)\n"), |
2739 ("%s.%s.%s" % sys.version_info[:3])) |
2739 ("%s.%s.%s" % sys.version_info[:3])) |
2740 fm.write('pythonlib', _("checking Python lib (%s)...\n"), |
2740 fm.write('pythonlib', _("checking Python lib (%s)...\n"), |
2741 os.path.dirname(os.__file__)) |
2741 os.path.dirname(os.__file__)) |
2742 |
2742 |
|
2743 # hg version |
|
2744 hgver = util.version() |
|
2745 fm.write('hgver', _("checking Mercurial version (%s)\n"), |
|
2746 hgver.split('+')[0]) |
|
2747 fm.write('hgverextra', _("checking Mercurial custom build (%s)\n"), |
|
2748 '+'.join(hgver.split('+')[1:])) |
|
2749 |
2743 # compiled modules |
2750 # compiled modules |
2744 fm.write('hgmodules', _("checking installed modules (%s)...\n"), |
2751 fm.write('hgmodules', _("checking installed modules (%s)...\n"), |
2745 os.path.dirname(__file__)) |
2752 os.path.dirname(__file__)) |
2746 |
2753 |
2747 err = None |
2754 err = None |