From 1b31806423c8fec4040fed6d1009db016860b763 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Tue, 1 May 2018 20:37:51 -0400 Subject: rename inkstitch/ to lib/ You can't have a module and a package named the same thing. PyInstaller wants to import the main script as if it were a module, and this doesn't work unless there's no directory of the same name with a __init__.py in it. --- lib/elements/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 lib/elements/__init__.py (limited to 'lib/elements/__init__.py') diff --git a/lib/elements/__init__.py b/lib/elements/__init__.py new file mode 100644 index 00000000..7e05e19c --- /dev/null +++ b/lib/elements/__init__.py @@ -0,0 +1,6 @@ +from auto_fill import AutoFill +from fill import Fill +from stroke import Stroke +from satin_column import SatinColumn +from element import EmbroideryElement +from polyline import Polyline -- cgit v1.2.3