From 7103d629c2387b061ad340593b112f8f81380a70 Mon Sep 17 00:00:00 2001 From: JazzyNico Date: Wed, 20 Jan 2010 11:24:01 +0100 Subject: [PATCH] Small fix in scour (optimized SVG) output extension. --- share/extensions/scour.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/extensions/scour.py b/share/extensions/scour.py index 700a0349f..b2b2c178e 100755 --- a/share/extensions/scour.py +++ b/share/extensions/scour.py @@ -2278,7 +2278,7 @@ def scourString(in_string, options=None): embedRasters(elem, options) # properly size the SVG document (ideally width/height should be 100% with a viewBox) - if options.viewboxing: + if options.enable_viewboxing: properlySizeDoc(doc.documentElement) # output the document as a pretty string with a single space for indent @@ -2354,7 +2354,7 @@ _options_parser.add_option("--strip-xml-prolog", action="store_true", dest="strip_xml_prolog", default=False, help="won't output the prolog") _options_parser.add_option("--enable-viewboxing", - action="store_true", dest="viewboxing", default=False, + action="store_true", dest="enable_viewboxing", default=False, help="changes document width/height to 100%/100% and creates viewbox coordinates") # GZ: this is confusing, most people will be thinking in terms of -- 2.30.2