diff options
author | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-03-11 18:11:02 +0000 |
---|---|---|
committer | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-03-11 18:11:02 +0000 |
commit | 51c729fdfd03369e2ad7dc6752034469cfbdf253 (patch) | |
tree | 8d66e5d3ab554bb311e32f938338da4d782dcba3 /commands/severity.py | |
parent | 2d19ddfc4899c511f370b6a57df0b9b251fe764a (diff) | |
download | bugseverywhere-51c729fdfd03369e2ad7dc6752034469cfbdf253.tar.gz |
Removed from-style imports
Diffstat (limited to 'commands/severity.py')
-rw-r--r-- | commands/severity.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/commands/severity.py b/commands/severity.py index 7a5051a..a421dd2 100644 --- a/commands/severity.py +++ b/commands/severity.py @@ -1,15 +1,14 @@ """Show or change a bug's severity level""" -from libbe.bugdir import tree_root -from libbe.cmdutil import get_bug from libbe import bugdir from libbe import cmdutil __desc__ = __doc__ + def execute(args): assert(len(args) in (0, 1, 2)) if len(args) == 0: print help() return - bug = get_bug(args[0]) + bug = cmdutil.get_bug(args[0]) if len(args) == 1: print bug.severity elif len(args) == 2: |