From: Aaron Bentley Date: Fri, 11 Mar 2005 18:11:02 +0000 (+0000) Subject: Removed from-style imports X-Git-Tag: 1.0.0~363 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=51c729fdfd03369e2ad7dc6752034469cfbdf253;p=be.git Removed from-style imports --- 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: