/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: Jelmer Vernooij
  • Date: 2006-08-16 00:22:24 UTC
  • Revision ID: jelmer@samba.org-20060816002224-52a986ce5032b1de
Release 0.9, list myself as maintainer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
"""GTK+ frontends to Bazaar commands """
 
18
 
18
19
from bzrlib.commands import Command, register_command, display_command
19
20
from bzrlib.errors import NotVersionedError, BzrCommandError, NoSuchFile
20
21
from bzrlib.commands import Command, register_command
23
24
from bzrlib.workingtree import WorkingTree
24
25
from bzrlib.bzrdir import BzrDir
25
26
 
 
27
__version__ = '0.9.0'
 
28
 
26
29
class cmd_gbranch(Command):
27
30
    """GTK+ branching.
28
31