From 51c729fdfd03369e2ad7dc6752034469cfbdf253 Mon Sep 17 00:00:00 2001 From: Aaron Bentley Date: Fri, 11 Mar 2005 18:11:02 +0000 Subject: [PATCH] Removed from-style imports --- commands/severity.py | 5 ++--- 1 file 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: -- 2.26.2