summaryrefslogtreecommitdiffstats
path: root/Mac/scripts/fullbuild.py
diff options
context:
space:
mode:
Diffstat (limited to 'Mac/scripts/fullbuild.py')
-rw-r--r--Mac/scripts/fullbuild.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Mac/scripts/fullbuild.py b/Mac/scripts/fullbuild.py
index 1a8fc6d..b1cd2d8 100644
--- a/Mac/scripts/fullbuild.py
+++ b/Mac/scripts/fullbuild.py
@@ -410,10 +410,9 @@ def incbuildno(filename):
def main():
macresource.need('DLOG', DIALOG_ID, 'fullbuild.rsrc')
- dir, ok = macfs.GetDirectory('Python source folder:')
- if not ok:
+ dir = EasyDialogs.AskFolder(message='Python source folder:')
+ if not dir:
sys.exit(0)
- dir = dir.as_pathname()
# Set genpluginprojects to use this folder (slight hack)
genpluginprojects.PYTHONDIR = dir