From: Jack Jansen <jack.jansen@cwi.nl>
Date: Thu, 13 Jan 2000 16:22:12 +0000 (+0000)
Subject: Get/set sys.path initializer in new appearance way.
X-Git-Tag: v1.6a1~554
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8242c9e4c44e28696808950e061137d7cc6dd407;p=python

Get/set sys.path initializer in new appearance way.
---

diff --git a/Mac/scripts/EditPythonPrefs.py b/Mac/scripts/EditPythonPrefs.py
index e8177c6944..343ea222d4 100644
--- a/Mac/scripts/EditPythonPrefs.py
+++ b/Mac/scripts/EditPythonPrefs.py
@@ -110,9 +110,9 @@ def interact(options, title):
 	d = GetNewDialog(DIALOG_ID, -1)
 	htext = d.GetDialogItemAsControl(TITLE_ITEM)
 	SetDialogItemText(htext, title)
-	ctl = d.GetDialogItemAsControl(TEXT_ITEM)
+	path_ctl = d.GetDialogItemAsControl(TEXT_ITEM)
 	data = string.joinfields(options['path'], '\r')
-	ctl.SetControlData(Controls.kControlEditTextPart, Controls.kControlEditTextTextTag, data)
+	path_ctl.SetControlData(Controls.kControlEditTextPart, Controls.kControlEditTextTextTag, data)
 
 	d.SelectDialogItemText(TEXT_ITEM, 0, 32767)
 	d.SelectDialogItemText(TEXT_ITEM, 0, 0)
@@ -142,7 +142,8 @@ def interact(options, title):
 			noptions = optinteract(noptions)
 			if noptions:
 				options = noptions
-	tmp = string.splitfields(h.data, '\r')
+	data = path_ctl.GetControlData(Controls.kControlEditTextPart, Controls.kControlEditTextTextTag)
+	tmp = string.splitfields(data, '\r')
 	newpath = []
 	for i in tmp:
 		if i: