~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2009-04-06 02:54:14 UTC
  • mfrom: (4253 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4255.
  • Revision ID: jelmer@samba.org-20090406025414-65tpjwcmjp5wa5oj
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
102
102
    else:
103
103
        raise ValueError("version_info %r not valid" % (version_info,))
104
104
 
105
 
    version_string = '%d.%d.%d.%s.%d' % version_info
 
105
    version_string = '%d.%d.%d.%s.%d' % tuple(version_info)
106
106
    return main_version + sub_string
107
107
 
108
108