Fix regression in 77906518c0
(accidentally removed default value for "shorten_ids_prefix")
This commit is contained in:
parent
0d6725e05d
commit
ea610e5c09
1 changed files with 1 additions and 1 deletions
|
|
@ -3212,7 +3212,7 @@ _option_group_ids.add_option("--shorten-ids",
|
||||||
action="store_true", dest="shorten_ids", default=False,
|
action="store_true", dest="shorten_ids", default=False,
|
||||||
help="shorten all IDs to the least number of letters possible")
|
help="shorten all IDs to the least number of letters possible")
|
||||||
_option_group_ids.add_option("--shorten-ids-prefix",
|
_option_group_ids.add_option("--shorten-ids-prefix",
|
||||||
action="store", type="string", dest="shorten_ids_prefix", metavar="PREFIX",
|
action="store", type="string", dest="shorten_ids_prefix", default="", metavar="PREFIX",
|
||||||
help="add custom prefix to shortened IDs")
|
help="add custom prefix to shortened IDs")
|
||||||
_option_group_ids.add_option("--protect-ids-noninkscape",
|
_option_group_ids.add_option("--protect-ids-noninkscape",
|
||||||
action="store_true", dest="protect_ids_noninkscape", default=False,
|
action="store_true", dest="protect_ids_noninkscape", default=False,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue