remove tmp directory from zip file paths

pull/198/head
Lex Neva 2018-06-13 12:53:05 -04:00
rodzic ea1135c145
commit f9a5e4c03a
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -64,7 +64,7 @@ class Zip(InkstitchExtension):
with ZipFile(temp_file.name, "w") as zip_file:
for file in files:
zip_file.write(file)
zip_file.write(file, os.path.basename(file))
# inkscape will read the file contents from stdout and copy
# to the destination file that the user chose