Modify ↓
Opened 9 years ago
Last modified 9 years ago
#12551 new enhancement
Add the field for the real description of ticket
Reported by: | anonymous | Owned by: | Singbox AB |
---|---|---|---|
Priority: | normal | Component: | TicketToTracScript |
Severity: | normal | Keywords: | |
Cc: | Trac Release: |
Description (last modified by )
Now: "Description" parameter fills "Summary" in a ticket. It's not real description - just like a Subject. I suggest add a real desciption field to fill a body of a ticket. I change a bit your script for myself to rich my goals: added:
parser.add_option('-q', '--summary', dest='summary', help='The body of the ticket. A good description should be specific, descriptive and to the point.')
changed:
if len(args) != 3: parser.error("incorrect number of arguments, use -h for help") #Add summary to the options so that it gets passed to the ticket later. options.summary = args[1] options.description = args[2]
Something like that...
Attachments (0)
Note: See
TracTickets for help on using
tickets.