/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-07-06 19:34:35 UTC
  • Revision ID: jelmer@samba.org-20060706193435-eaf2ffcc552b4185
Ignore pyc files

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
 
 
19
18
from bzrlib.commands import Command, register_command, display_command
20
19
from bzrlib.errors import NotVersionedError, BzrCommandError, NoSuchFile
21
20
from bzrlib.commands import Command, register_command
24
23
from bzrlib.workingtree import WorkingTree
25
24
from bzrlib.bzrdir import BzrDir
26
25
 
27
 
__version__ = '0.10.0'
28
 
 
29
26
class cmd_gbranch(Command):
30
27
    """GTK+ branching.
31
28