From dc776881e405693968e84651322d114242669100 Mon Sep 17 00:00:00 2001 From: Yax <1949284+kianby@users.noreply.github.com> Date: Sun, 22 Sep 2024 19:42:53 +0200 Subject: [PATCH] include property files in pyinstaller executable --- stacosys.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stacosys.spec b/stacosys.spec index 30a8b39..7a25893 100644 --- a/stacosys.spec +++ b/stacosys.spec @@ -5,7 +5,7 @@ a = Analysis( ['src/stacosys/run.py'], pathex=['src'], binaries=[], - datas=[('src/stacosys/interface/templates/*.html', 'src/stacosys/interface/templates/')], + datas=[('src/stacosys/interface/templates/*.html', 'stacosys/interface/templates/'), ('src/stacosys/i18n/*.properties', 'stacosys/i18n/')], hiddenimports=[], hookspath=[], hooksconfig={},