/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Ian Clatworthy
  • Date: 2009-04-03 00:07:49 UTC
  • mfrom: (4241 +trunk)
  • mto: (4265.1.1 bbc-merge)
  • mto: This revision was merged to the branch mainline in revision 4280.
  • Revision ID: ian.clatworthy@canonical.com-20090403000749-sevl9klctwfi8jml
merge bzr.dev r4241

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