diff options
| author | Lex Neva <github.com@lexneva.name> | 2019-08-03 23:20:55 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2019-08-10 22:14:47 -0400 |
| commit | 09bf8bd1cbe2c062ae395e3f19f6051b185f9e55 (patch) | |
| tree | b4b02bc8ed2676932973ac667d7c3432bcbc0d68 /lib/output.py | |
| parent | 363e05209780149f53fba1f749240f706cc01cec (diff) | |
allow unicode filenames again
Diffstat (limited to 'lib/output.py')
| -rw-r--r-- | lib/output.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/output.py b/lib/output.py index 0958a6a2..21622765 100644 --- a/lib/output.py +++ b/lib/output.py @@ -98,7 +98,7 @@ def write_embroidery_file(file_path, stitch_plan, svg, settings={}): settings['explicit_trim'] = False try: - pyembroidery.write(pattern, file_path.encode("UTF-8"), settings) + pyembroidery.write(pattern, file_path, settings) except IOError as e: # L10N low-level file error. %(error)s is (hopefully?) translated by # the user's system automatically. |
