Fix regression in 77906518c0

(accidentally removed default value for  "shorten_ids_prefix")
This commit is contained in:
Eduard Braun 2016-04-02 01:54:27 +02:00
parent 0d6725e05d
commit ea610e5c09

View file

@ -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,