diff options
author | Aaron Bentley <aaron.bentley@utoronto.ca> | 2005-03-18 01:22:07 +0000 |
---|---|---|
committer | Aaron Bentley <aaron.bentley@utoronto.ca> | 2005-03-18 01:22:07 +0000 |
commit | e0f027bc4d96afda56dcbf2ce3998a5bc9d88ff9 (patch) | |
tree | d4c65ed56802248a7fefd1c460fe5e2e6361ba1a /becommands/new.py | |
parent | ca4d0a928e22fc1d264e031f0938397912474319 (diff) | |
download | bugseverywhere-e0f027bc4d96afda56dcbf2ce3998a5bc9d88ff9.tar.gz |
Made new print the bug ID of the new bug
Diffstat (limited to 'becommands/new.py')
-rw-r--r-- | becommands/new.py | 3 |
1 files changed, 2 insertions, 1 deletions
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) |