aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/depend.py
diff options
context:
space:
mode:
Diffstat (limited to 'becommands/depend.py')
-rw-r--r--becommands/depend.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/becommands/depend.py b/becommands/depend.py
index d19845d..1a2b905 100644
--- a/becommands/depend.py
+++ b/becommands/depend.py
@@ -95,9 +95,9 @@ def execute(args, manipulate_encodings=True, restrict_file_access=False):
return 0
allowed_status_values = \
- cmdutil.select_values(options.limit_status, bug.status_values)
+ cmdutil.select_values(options.status, bug.status_values)
allowed_severity_values = \
- cmdutil.select_values(options.limit_severity, bug.severity_values)
+ cmdutil.select_values(options.severity, bug.severity_values)
bugA = cmdutil.bug_from_id(bd, args[0])
@@ -149,10 +149,9 @@ def get_parser():
parser.add_option("-s", "--show-status", action="store_true",
dest="show_status", default=False,
help="Show status of blocking bugs")
- parser.add_option("--status", dest="limit_status", metavar="STATUS",
+ parser.add_option("--status", dest="status", metavar="STATUS",
help="Only show bugs matching the STATUS specifier")
- parser.add_option("--severity", dest="limit_severity",
- metavar="SEVERITY",
+ parser.add_option("--severity", dest="severity", metavar="SEVERITY",
help="Only show bugs matching the SEVERITY specifier")
parser.add_option("-t", "--tree-depth", metavar="DEPTH", default=None,
type="int", dest="tree_depth",