/+junk/brz-gtk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/brz-gtk
1 by Gustav Hartvigsson
Inital code
1
#!/usr/bin/env python3
2
3
""" Gtk frontend for Breezy
4
"""
5
6
import breezy
7
from breezy import (
8
    branch as _mod_branch,
9
    config as _mod_config,
10
    lazy_regex,
11
)
12
13
from breezy.directory_service import directories
14
from breezy.help_topics import topic_registry
15
16
from breezy.commands import plugin_cmds
17
18
_brz_gtk_help = """Handle Breezy tasks using a Gtk frontend
19
20
"""
21
topic_registry.register ('brz-gtk', _brz_gtk_help, 'Gtk frontend for Breezy')
22
23
plugin_cmds.register_lazy ('cmd_ghelp', ['ghelp'], __name__ + ".cmds")