From af7fcc66fd9d5d85fb180c10c0b5892dbd63befe Mon Sep 17 00:00:00 2001 From: Izalia Mae Date: Sun, 11 Dec 2022 09:15:03 -0500 Subject: [PATCH] fix missing modules when building via pyinstaller --- relay.spec | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/relay.spec b/relay.spec index 57fedc7..c21a829 100644 --- a/relay.spec +++ b/relay.spec @@ -9,7 +9,13 @@ a = Analysis( pathex=[], binaries=[], datas=[], - hiddenimports=[], + hiddenimports=[ + 'aputils.enums', + 'aputils.errors', + 'aputils.misc', + 'aputils.objects', + 'aputils.signer' + ], hookspath=[], hooksconfig={}, runtime_hooks=[],