From 99dc0dfae9bf50082ce1124e50396fd2eedda452 Mon Sep 17 00:00:00 2001 From: Tobias Oberstein Date: Sat, 2 Apr 2016 17:11:14 +0200 Subject: [PATCH] fix opt groups --- scour/scour.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scour/scour.py b/scour/scour.py index 0104a72..4d7995e 100644 --- a/scour/scour.py +++ b/scour/scour.py @@ -3237,6 +3237,7 @@ _option_group_compatibility = optparse.OptionGroup(_options_parser, "SVG compati _option_group_compatibility.add_option("--error-on-flowtext", action="store_true", dest="error_on_flowtext", default=False, help="In case the input SVG uses flow text, bail out with error. Otherwise only warn. (default: False)") +_options_parser.add_option_group(_option_group_compatibility) def maybe_gziped_file(filename, mode="r"):