~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/version.py

  • Committer: Vincent Ladeuil
  • Date: 2007-11-04 15:29:17 UTC
  • mfrom: (2961 +trunk)
  • mto: (2961.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 2962.
  • Revision ID: v.ladeuil+lp@free.fr-20071104152917-nrsumxpk3dikso2c
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
        python_dll = "python%d%d.dll" % sys.version_info[:2]
58
58
        to_file.write(os.path.join(basedir, python_dll) + ' ')
59
59
    # and now version of python interpreter
60
 
    to_file.write(bzrlib._format_version_tuple(sys.version_info))
 
60
    to_file.write('.'.join(map(str, sys.version_info)))
61
61
    to_file.write('\n')
62
62
 
63
63
    to_file.write("  Python standard library:" + ' ')