﻿ticket,summary,type,release,owner,status,created,modified,_description,_reporter
12551,Add the field for the real description of ticket,enhancement,,Singbox AB,new,2015-10-22T16:56:05+02:00,2015-10-22T19:32:41+02:00,"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: 
{{{#!python
        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: 
{{{#!python
        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...",anonymous
14035,ticket2trac.py script not work on trac1.4.3,defect,1.4,Singbox AB,new,2021-06-28T12:45:40+02:00,2021-06-29T06:56:24+02:00,"Hi,

We have installed trac 1.4.3 successfully. It is working fine.

But we are facing one problem while creating ticket using Ticket2trac.py script. It showing below error.

{{{
python ticket2trac.py -h

Traceback (most recent call last):
  File ""ticket2trac.py"", line 49, in <module>
    from trac.ticket.notification import TicketNotifyEmail
ImportError: cannot import name TicketNotifyEmail
}}}",asrafbd2323@…
