diff options
author | W. Trevor King <wking@drexel.edu> | 2009-12-12 20:57:59 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-12-12 20:57:59 -0500 |
commit | dff6bd9bf89ca80e2265696a478e540476718c9c (patch) | |
tree | 230f35262808052839ae2401d99cdf23cc304f20 /libbe/command/list.py | |
parent | 86f886399813d37f3cfcf74a824d352e01eb0d8c (diff) | |
download | bugseverywhere-dff6bd9bf89ca80e2265696a478e540476718c9c.tar.gz |
Moved be to libbe.ui.command_line and transitioned to Command format.
Diffstat (limited to 'libbe/command/list.py')
-rw-r--r-- | libbe/command/list.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libbe/command/list.py b/libbe/command/list.py index 9527779..c835815 100644 --- a/libbe/command/list.py +++ b/libbe/command/list.py @@ -72,6 +72,7 @@ class List (libbe.command.Command): def __init__(self, *args, **kwargs): libbe.command.Command.__init__(self, *args, **kwargs) + self.requires_bugdir = True self.options.extend([ libbe.command.Option(name='status', help='Only show bugs matching the STATUS specifier', |