Use the new macresource module to open the accompanying resource file (if needed).
diff --git a/Mac/scripts/MkDistr_ui.py b/Mac/scripts/MkDistr_ui.py
index 3ea78a9..5386950 100644
--- a/Mac/scripts/MkDistr_ui.py
+++ b/Mac/scripts/MkDistr_ui.py
@@ -23,6 +23,7 @@
import macfs
import os
import sys
+import macresource
# Resource IDs
ID_MAIN = 514
@@ -321,7 +322,7 @@
def InitUI():
"""Initialize stuff needed by UI (a resource file)"""
- Res.FSpOpenResFile('MkDistr.rsrc', 1)
+ macresource.need('DLOG', ID_MAIN, 'MkDistr.rsrc', modname=__name__)
class _testerhelp:
def __init__(self, which):
@@ -340,7 +341,7 @@
class _test:
def __init__(self):
import sys
- Res.FSpOpenResFile('MkDistr.rsrc', 1)
+ InitUI()
self.inc = _testerhelp('include')
self.exc = _testerhelp('exclude')
self.ui = MkDistrUI(self)