Skip to content

Commit c0661f2

Browse files
Fix app crash by removing urllib from excluded modules
pathlib depends on urllib internally, so excluding it causes the app to fail on startup with ModuleNotFoundError.
1 parent 315553a commit c0661f2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fileshift.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ excluded_modules = [
1515
'PyQt6.QtSvgWidgets', 'PyQt6.QtTest', 'PyQt6.QtWebChannel',
1616
'PyQt6.QtWebEngine', 'PyQt6.QtWebEngineCore', 'PyQt6.QtWebEngineWidgets',
1717
'PyQt6.QtWebSockets', 'PyQt6.QtXml',
18-
'test', 'unittest', 'xml', 'email', 'html', 'http', 'urllib',
18+
'test', 'unittest', 'xml', 'email', 'html', 'http',
1919
'ssl', '_ssl', 'cryptography', 'certifi', 'PIL', 'numpy', 'matplotlib',
2020
]
2121

0 commit comments

Comments
 (0)