Fix build issues using pyinstaller

This commit is contained in:
Brett Williams
2025-03-13 14:17:50 -05:00
parent 7827f73530
commit 05cd0470dd
8 changed files with 11 additions and 8 deletions

View File

@@ -60,7 +60,7 @@ class MenuBar(QMenuBar):
@staticmethod
def check_for_updates():
from src.utilities.misc_helper import check_for_updates
from version import APP_NAME, APP_VERSION, APP_REPO_NAME, APP_REPO_OWNER
from src.version import APP_NAME, APP_VERSION, APP_REPO_NAME, APP_REPO_OWNER
found_update = check_for_updates(APP_REPO_NAME, APP_REPO_OWNER, APP_NAME, APP_VERSION)
if found_update:
dialog = UpdateDialog(found_update, APP_VERSION)