@@ -352,36 +352,36 @@ def build_parser(name):
352352 help = "expression to determine the next snapshot number" )
353353 parser .add_conf_file_arg ("--git-log" , dest = "git_log" ,
354354 help = "options to pass to git-log" )
355- parser .add_arg ("-v" , "--verbose" , action = "store_true" , dest = "verbose" , default = False ,
355+ parser .add_arg ("-v" , "--verbose" , action = "store_true" , dest = "verbose" ,
356356 help = "verbose command execution" )
357357 parser .add_conf_file_arg ("--color" , dest = "color" , type = 'tristate' )
358358 parser .add_conf_file_arg ("--color-scheme" , dest = "color_scheme" )
359359 range_group .add_arg ("-s" , "--since" , dest = "since" , help = "commit to start from (e.g. HEAD^^^, debian/0.4.3)" )
360- range_group .add_arg ("-a" , "--auto" , action = "store_true" , dest = "auto" , default = False ,
360+ range_group .add_arg ("-a" , "--auto" , action = "store_true" , dest = "auto" ,
361361 help = "autocomplete changelog from last snapshot or tag" )
362- version_group .add_arg ("-R" , "--release" , action = "store_true" , dest = "release" , default = False ,
362+ version_group .add_arg ("-R" , "--release" , action = "store_true" , dest = "release" ,
363363 help = "mark as release" )
364- version_group .add_arg ("-S" , "--snapshot" , action = "store_true" , dest = "snapshot" , default = False ,
364+ version_group .add_arg ("-S" , "--snapshot" , action = "store_true" , dest = "snapshot" ,
365365 help = "mark as snapshot build" )
366366 version_group .add_arg ("-D" , "--distribution" , dest = "distribution" , help = "Set distribution" )
367- version_group .add_arg ("--force-distribution" , action = "store_true" , dest = "force_distribution" , default = False ,
367+ version_group .add_arg ("--force-distribution" , action = "store_true" , dest = "force_distribution" ,
368368 help = "Force the provided distribution to be used, "
369369 "even if it doesn't match the list of known distributions" )
370370 version_group .add_arg ("-N" , "--new-version" , dest = "new_version" ,
371371 help = "use this as base for the new version number" )
372372 version_group .add_conf_file_arg ("--urgency" , dest = "urgency" )
373- version_group .add_arg ("--bpo" , dest = "bpo" , action = "store_true" , default = False ,
373+ version_group .add_arg ("--bpo" , dest = "bpo" , action = "store_true" ,
374374 help = "Increment the Debian release number for an upload to backports, "
375375 "and add a backport upload changelog comment." )
376- version_group .add_arg ("--nmu" , dest = "nmu" , action = "store_true" , default = False ,
376+ version_group .add_arg ("--nmu" , dest = "nmu" , action = "store_true" ,
377377 help = "Increment the Debian release number for a non-maintainer upload" )
378- version_group .add_arg ("--qa" , dest = "qa" , action = "store_true" , default = False ,
378+ version_group .add_arg ("--qa" , dest = "qa" , action = "store_true" ,
379379 help = "Increment the Debian release number for a Debian QA Team upload, "
380380 "and add a QA upload changelog comment." )
381- version_group .add_arg ("--team" , dest = "team" , action = "store_true" , default = False ,
381+ version_group .add_arg ("--team" , dest = "team" , action = "store_true" ,
382382 help = "Increment the Debian release number for a Debian Team upload, "
383383 "and add a Team upload changelog comment." )
384- version_group .add_arg ("--security" , dest = "security" , action = "store_true" , default = False ,
384+ version_group .add_arg ("--security" , dest = "security" , action = "store_true" ,
385385 help = "Increment the Debian release number for a security upload and "
386386 "add a security upload changelog comment." )
387387 version_group .add_bool_conf_file_arg ("--git-author" , dest = "use_git_author" )
@@ -399,7 +399,7 @@ def build_parser(name):
399399 commit_group .add_conf_file_arg ("--spawn-editor" , dest = "spawn_editor" )
400400 parser .add_conf_file_arg ("--commit-msg" ,
401401 dest = "commit_msg" )
402- parser .add_arg ("-c" , "--commit" , action = "store_true" , dest = "commit" , default = False ,
402+ parser .add_arg ("-c" , "--commit" , action = "store_true" , dest = "commit" ,
403403 help = "commit changelog file after generating" )
404404 parser .add_conf_file_arg ("--dch-opt" , dest = "dch_opts" , action = "append" ,
405405 help = "option to pass to dch verbatim, "
0 commit comments