~qbzr-dev/qbzr/show-merge-depth

« back to all changes in this revision

Viewing changes to lib/extra/bugurl.py

  • Committer: Gary van der Merwe
  • Date: 2009-08-19 12:41:14 UTC
  • mfrom: (677.1.243 trunk)
  • Revision ID: garyvdm@gmail.com-20090819124114-jz8zf4o4dlcl0a4r
Merge Trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
from bzrlib.branch import Branch
23
23
from bzrlib.option import Option
24
24
 
25
 
 
26
 
class FakeBranch(object):
27
 
 
28
 
    def __init__(self):
29
 
        self._config = GlobalConfig()
30
 
 
31
 
    def get_config(self):
32
 
        return self._config
 
25
from bzrlib.plugins.qbzr.lib.bugs import FakeBranch
33
26
 
34
27
 
35
28
class cmd_bug_url(commands.Command):