From 5a6d315ee8e8b217aa2720c4e44af8d17a4cd28c Mon Sep 17 00:00:00 2001 Message-Id: <5a6d315ee8e8b217aa2720c4e44af8d17a4cd28c.1746782402.git.mdw@distorted.org.uk> From: Mark Wooding Date: Tue, 27 Feb 2007 22:39:09 +0000 Subject: [PATCH] Correctly raise exception on unknown pull-policy. Organization: Straylight/Edgeware From: Yann Dirson Signed-off-by: Yann Dirson --- stgit/commands/pull.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stgit/commands/pull.py b/stgit/commands/pull.py index e4a2b62..7b3c90c 100644 --- a/stgit/commands/pull.py +++ b/stgit/commands/pull.py @@ -20,6 +20,7 @@ from optparse import OptionParser, make_option from stgit.commands.common import * from stgit.utils import * +from stgit.config import GitConfigException from stgit import stack, git @@ -73,7 +74,7 @@ def func(parser, options, args): elif policy == 'rebase': must_rebase = 1 else: - raise config.ConfigException, 'Unsupported pull-policy "%s"' % policy + raise GitConfigException, 'Unsupported pull-policy "%s"' % policy applied = prepare_rebase(real_rebase=must_rebase, force=options.force) -- [mdw]