diff options
author | jaseg <git@jaseg.de> | 2023-04-16 20:23:31 +0200 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2023-04-16 20:23:31 +0200 |
commit | f80f341a7290373e10da02f71b8c2f0a85d515fa (patch) | |
tree | 9ae14d1c3983c5920da7673325aeebfe1e3cb473 | |
parent | c5640b4db31340c6f700bac4ac518f3a92ca7414 (diff) | |
download | gerbolyze-f80f341a7290373e10da02f71b8c2f0a85d515fa.tar.gz gerbolyze-f80f341a7290373e10da02f71b8c2f0a85d515fa.tar.bz2 gerbolyze-f80f341a7290373e10da02f71b8c2f0a85d515fa.zip |
svg-flatten: Remove trace of legacy usvg command line
-rw-r--r-- | svg-flatten/svg_flatten_wasi/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svg-flatten/svg_flatten_wasi/__init__.py b/svg-flatten/svg_flatten_wasi/__init__.py index c52118b..85d5657 100644 --- a/svg-flatten/svg_flatten_wasi/__init__.py +++ b/svg-flatten/svg_flatten_wasi/__init__.py @@ -75,7 +75,7 @@ def _run_wasm_app(wasm_filename, argv, cachedir="svg-flatten-wasi"): def run_usvg(input_file, output_file, **usvg_args): - args = ['--keep-named-groups'] + args = [] for key, value in usvg_args.items(): if value is not None: if value is False: |