X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/1e78b00609d4d284f6316a328aa9b25c1cf2a254..170f576bb9eac1dafc139de7b51226d78d31cbbe:/stgit/commands/branch.py diff --git a/stgit/commands/branch.py b/stgit/commands/branch.py index cc74122..c4b5945 100644 --- a/stgit/commands/branch.py +++ b/stgit/commands/branch.py @@ -23,7 +23,7 @@ from optparse import OptionParser, make_option from stgit.commands.common import * from stgit.utils import * -from stgit import stack, git +from stgit import stack, git, basedir help = 'manage development branches' @@ -173,7 +173,7 @@ def func(parser, options, args): if len(args) != 0: parser.error('incorrect number of arguments') - branches = os.listdir(os.path.join(git.get_base_dir(), 'refs', 'heads')) + branches = os.listdir(os.path.join(basedir.get(), 'refs', 'heads')) branches.sort() max_len = max([len(i) for i in branches])