/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: matkor
  • Date: 2007-08-23 10:17:40 UTC
  • mto: This revision was merged to the branch mainline in revision 265.
  • Revision ID: matkor@laptop-hp-20070823101740-s17kf9qa383wiuje
Code for "branch update" menuitem and toolbox. Typo fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
import bzrlib
35
35
 
36
 
__version__ = '0.91.0'
 
36
__version__ = '0.90.0'
37
37
version_info = tuple(int(n) for n in __version__.split('.'))
38
38
 
39
39
 
57
57
        from warnings import warn as warning
58
58
    if bzrlib_version < desired:
59
59
        from bzrlib.errors import BzrError
60
 
        warning('Installed Bazaar version %s is too old to be used with bzr-gtk'
 
60
        warning('Installed bzr version %s is too old to be used with bzr-gtk'
61
61
                ' %s.' % (bzrlib.__version__, __version__))
62
62
        raise BzrError('Version mismatch: %r' % (version_info,) )
63
63
    else: