/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: Szilveszter Farkas (Phanatic)
  • Date: 2007-05-14 10:54:40 UTC
  • mto: (195.1.4 trunk)
  • mto: This revision was merged to the branch mainline in revision 199.
  • Revision ID: szilveszter.farkas@gmail.com-20070514105440-e5fhlftlp3r0bgmr
Fixed Branch -> Status in Olive (no more traceback).

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    if bzrlib_version < desired:
41
41
        warning('Installed bzr version %s is too old to be used with bzr-gtk'
42
42
                ' %s.' % (bzrlib.__version__, __version__))
43
 
        raise BzrError('Version mismatch: %r' % version_info)
 
43
        # Not using BzrNewError, because it may not exist.
 
44
        raise Exception, ('Version mismatch', version_info)
44
45
    else:
45
46
        warning('bzr-gtk is not up to date with installed bzr version %s.'
46
47
                ' \nThere should be a newer version available, e.g. %i.%i.'