diff options
-rw-r--r-- | libbe/command/util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbe/command/util.py b/libbe/command/util.py index 6f7b92e..9f76ad8 100644 --- a/libbe/command/util.py +++ b/libbe/command/util.py @@ -50,12 +50,12 @@ def complete_path(command, argument, fragment=None): return comp_path(fragment) def complete_status(command, argument, fragment=None): - bd = sorted(command._get_bugdirs().items())[1] + bd = sorted(command._get_bugdirs().items())[0] import libbe.bug return libbe.bug.status_values def complete_severity(command, argument, fragment=None): - bd = sorted(command._get_bugdirs().items())[1] + bd = sorted(command._get_bugdirs().items())[0] import libbe.bug return libbe.bug.severity_values |