]> granicus.if.org Git - python/commitdiff
Oops, interaction() returned a single value in stead of a tuple (I thought that bug...
authorJack Jansen <jack.jansen@cwi.nl>
Thu, 14 Dec 2000 23:34:15 +0000 (23:34 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Thu, 14 Dec 2000 23:34:15 +0000 (23:34 +0000)
Mac/scripts/BuildApplication.py

index bf44ebd6cfa17a8842ec6d5f10312b7424393366..e9884a475e83f8c4dca46be28c38709a374010ba 100644 (file)
@@ -112,11 +112,10 @@ class radio:
 
 def interact(scriptname):
        if PPC_ONLY:
-               return 'pwpc'
+               return 'pwpc', 1
        d = Dlg.GetNewDialog(DLG_ID, -1)
        if not d:
-               print "Can't get DLOG resource with id =", DLG_ID
-               return
+               raise "Can't get DLOG resource with id =", DLG_ID
        d.SetDialogDefaultItem(OK_BUTTON)
        d.SetDialogCancelItem(CANCEL_BUTTON)
        Dlg.ParamText(scriptname, "", "", "")