Changes between Initial Version and Version 1 of Ticket #12551


Ignore:
Timestamp:
Oct 22, 2015, 5:32:41 PM (9 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12551 – Description

    initial v1  
    44I change a bit your script for myself to rich my goals:
    55added:
     6{{{#!python
    67        parser.add_option('-q', '--summary', dest='summary',
    78                          help='The body of the ticket. A good description should be specific, descriptive and to the point.')
     9}}}
     10
    811changed:
     12{{{#!python
    913        if len(args) != 3:
    1014            parser.error("incorrect number of arguments, use -h for help")
     
    1317        options.summary = args[1]
    1418        options.description = args[2]
     19}}}
    1520
    1621Something like that...