~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Martin Pool
  • Date: 2006-05-17 04:01:38 UTC
  • mto: (1704.2.17 bzr.mbp.integration)
  • mto: This revision was merged to the branch mainline in revision 1710.
  • Revision ID: mbp@sourcefrog.net-20060517040138-2cdf4e74bbc40afc
Fix setup.py to install launchpad plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
96
96
# 'beta', 'candidate', or 'final'. The version_info value corresponding to the
97
97
# Python version 2.0 is (2, 0, 0, 'final', 0).
98
98
 
99
 
version_info = (0, 8, 1, 'final', 0)
 
99
version_info = (0, 8, 2, 'final', 0)
100
100
 
101
101
if version_info[3] == 'final':
102
102
    version_string = '%d.%d.%d' % version_info[:3]