Modify ↓
#7607 closed defect (fixed)
Fix exception in TicketLinks.__repr__
Reported by: | Eygene Ryabinkin | Owned by: | Noah Kantrowitz |
---|---|---|---|
Priority: | normal | Component: | MasterTicketsPlugin |
Severity: | major | Keywords: | |
Cc: | Trac Release: | 0.12 |
Description (last modified by )
str.join()
wants a list of strings to join, but it is fed with the list of integers. So, when exception in the plugin is caught by Trac and it wants to represent the TicketLinks
object as a string, the second exception strikes and Trac dumps ugly textual backtrace.
The patch is attached.
Attachments (1)
Change History (3)
Changed 14 years ago by
Attachment: | extra-patch-0.12-stringify-ids added |
---|
comment:1 Changed 12 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
This was fixed in 634d8784aed8f5a77cb3ffc470241bdab253c829.
comment:2 Changed 12 years ago by
Description: | modified (diff) |
---|
Note: See
TracTickets for help on using
tickets.
Stringifies tickets IDs when pushing them to the list to be join()'ed.