aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/command/new.py
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spam@spamtrap.com>2012-03-02 07:28:34 -0500
committerW. Trevor King <wking@drexel.edu>2012-03-02 07:28:34 -0500
commit99f328d8937a173ca4e4f2bb7c46561c675d2d24 (patch)
tree9625434b9bef76c9c7b8c15c31753d9542e94285 /libbe/command/new.py
parent323da0a602bb689eecd6137dc3c676b3360a92b9 (diff)
downloadbugseverywhere-99f328d8937a173ca4e4f2bb7c46561c675d2d24.tar.gz
Print full UUIDs during `new` and `comment`.
Diffstat (limited to 'libbe/command/new.py')
-rw-r--r--libbe/command/new.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/command/new.py b/libbe/command/new.py
index e34d05c..a847132 100644
--- a/libbe/command/new.py
+++ b/libbe/command/new.py
@@ -124,7 +124,7 @@ class New (libbe.command.Command):
bug.severity = params['severity']
bugdir.storage.writeable = True
bug.save()
- print >> self.stdout, 'Created bug with ID %s' % bug.id.user()
+ print >> self.stdout, 'Created bug with ID %s (%s)' % (bug.id.user(), bug.id.long_user())
return 0
def _long_help(self):