diff options
| author | Lex Neva <lexelby@users.noreply.github.com> | 2018-09-12 21:32:15 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-12 21:32:15 -0400 |
| commit | 7b8af2ed5731bc10b331db2b32dbce48f60c33a9 (patch) | |
| tree | ac06f38cde84e676f8aa8e91f08b71d45b9f2642 /lib/extensions/embroider.py | |
| parent | 3fd741a1a4218b6559184aaadcde8abca178bde2 (diff) | |
| parent | d30507171b04f37871db74609c0a521325bddbd1 (diff) | |
Merge pull request #301 from inkstitch/lexelby/bug-fixes
bug fixes
Diffstat (limited to 'lib/extensions/embroider.py')
| -rw-r--r-- | lib/extensions/embroider.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/extensions/embroider.py b/lib/extensions/embroider.py index 921201d6..7c8adfc9 100644 --- a/lib/extensions/embroider.py +++ b/lib/extensions/embroider.py @@ -39,7 +39,7 @@ class Embroider(InkstitchExtension): def get_output_path(self): if self.options.output_file: - output_path = os.path.join(self.options.path, self.options.output_file) + output_path = os.path.join(os.path.expanduser(os.path.expandvars(self.options.path)), self.options.output_file) else: csv_filename = '%s.%s' % (self.get_base_file_name(), self.options.output_format) output_path = os.path.join(self.options.path, csv_filename) |
