diff options
-rw-r--r-- | Mac/scripts/EditPythonPrefs.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Mac/scripts/EditPythonPrefs.py b/Mac/scripts/EditPythonPrefs.py index 29f4fdb..b882bde 100644 --- a/Mac/scripts/EditPythonPrefs.py +++ b/Mac/scripts/EditPythonPrefs.py @@ -151,7 +151,10 @@ def interact(options, title): def edit_preferences(): handler = pythonprefs.PythonOptions() - result = interact(handler.load(), 'System-wide preferences') + options = handler.load() + if options['noargs']: + EasyDialogs.Message('Warning: system-wide sys.argv processing is off.\nIf you dropped an applet I have not seen it.') + result = interact(options, 'System-wide preferences') if result: handler.save(result) |