/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: Aaron Bentley
  • Date: 2006-09-18 13:49:47 UTC
  • mfrom: (81 bzr-gtk)
  • mto: (66.6.5 gtk)
  • mto: This revision was merged to the branch mainline in revision 112.
  • Revision ID: abentley@panoramicfeedback.com-20060918134947-0c9ad79a67b1765f
MergeĀ fromĀ upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
2
 
 
3
1
# This program is free software; you can redistribute it and/or modify
4
2
# it under the terms of the GNU General Public License as published by
5
3
# the Free Software Foundation; either version 2 of the License, or
15
13
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
14
 
17
15
"""GTK+ frontends to Bazaar commands """
 
16
 
18
17
from bzrlib.commands import Command, register_command, display_command
19
18
from bzrlib.errors import NotVersionedError, BzrCommandError, NoSuchFile
20
19
from bzrlib.commands import Command, register_command
23
22
from bzrlib.workingtree import WorkingTree
24
23
from bzrlib.bzrdir import BzrDir
25
24
 
 
25
__version__ = '0.10.0'
 
26
 
26
27
class cmd_gbranch(Command):
27
28
    """GTK+ branching.
28
29