We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73d95d8 commit 2f89e95Copy full SHA for 2f89e95
2 files changed
src/py2exe_gui/Resources/__init__.py
@@ -0,0 +1 @@
1
+from compiled_resources import *
src/py2exe_gui/Widgets/dialog_widgets.py
@@ -215,6 +215,7 @@ def handle_multifunction(self) -> None:
215
elif btn_text == "打开输出位置":
216
dist_path = self.parent().packaging_task.script_path.parent / "dist"
217
if self.parent().running_platform == "Windows":
218
+ import os # fmt: skip
219
os.startfile(dist_path) # type: ignore
220
elif self.parent().running_platform == "Linux":
221
subprocess.call(["xdg-open", dist_path])
0 commit comments