Trivial-Fix : Add a ' to the choices documentation

Change-Id: Ic2023e91602fa23512bc5cc9c6a395f2311adb1a
This commit is contained in:
reedip 2016-03-18 15:27:29 +09:00 committed by Reedip
parent 1f72384f69
commit 3ccc4f7d06

View File

@ -100,7 +100,7 @@ An example parser declaration:
choice_option.add_argument( choice_option.add_argument(
'--test', '--test',
metavar='<test>, metavar='<test>',
choices=['choice1', 'choice2', 'choice3'], choices=['choice1', 'choice2', 'choice3'],
help=_('Test type (choice1, choice2 or choice3)'), help=_('Test type (choice1, choice2 or choice3)'),
) )