From: Aaron Bentley Date: Fri, 18 Mar 2005 01:22:07 +0000 (+0000) Subject: Made new print the bug ID of the new bug X-Git-Tag: 1.0.0~344 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e0f027bc4d96afda56dcbf2ce3998a5bc9d88ff9;p=be.git Made new print the bug ID of the new bug --- diff --git a/becommands/new.py b/becommands/new.py index eae9688..e36bc84 100644 --- a/becommands/new.py +++ b/becommands/new.py @@ -4,11 +4,12 @@ def execute(args): if len(args) != 1: raise cmdutil.UserError("Please supply a summary message") dir = bugdir.tree_root(".") - bugs = (dir.list()) bug = dir.new_bug() bug.creator = names.creator() bug.severity = "minor" bug.status = "open" bug.summary = args[0] bug.save() + bugs = (dir.list()) + print "Created bug with ID %s" % cmdutil.unique_name(bug, bugs)