sipb-www
/
snippets
/
.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
c0df155
)
TracZephyrPlugin: Display the priority of new tickets.
author
Geoffrey Thomas
<geofft@mit.edu>
Tue, 23 Feb 2010 23:34:55 +0000
(18:34 -0500)
committer
Geoffrey Thomas
<geofft@mit.edu>
Tue, 23 Feb 2010 23:34:55 +0000
(18:34 -0500)
Signed-off-by: Geoffrey Thomas <geofft@mit.edu>
TracZephyrPlugin/ZephyrPlugin.py
patch
|
blob
|
history
diff --git
a/TracZephyrPlugin/ZephyrPlugin.py
b/TracZephyrPlugin/ZephyrPlugin.py
index 679d019f962274877cc4bfb63e32cd3a905b6be8..88b9ec219c7d57e3d696f716953483819e829288 100644
(file)
--- a/
TracZephyrPlugin/ZephyrPlugin.py
+++ b/
TracZephyrPlugin/ZephyrPlugin.py
@@
-35,9
+35,10
@@
class ZephyrPlugin(Component):
return '\n'.join(lines)
def ticket_created(self, ticket):
- message = "%s filed a new ticket:\n%s\n\n%s" % (ticket['reporter'],
- ticket['summary'],
- self.format_text(ticket['description']))
+ message = "%s filed a new %s ticket:\n%s\n\n%s" % (ticket['reporter'],
+ ticket['priority'],
+ ticket['summary'],
+ self.format_text(ticket['description']))
self.zwrite(ticket.id, message)
def ticket_changed(self, ticket, comment, author, old_values):