[wpdev-commits] xmlscripts/scripts xmlconfig.py,1.2,1.3
Brought to you by:
rip,
thiagocorrea
|
From: <co...@us...> - 2003-11-11 22:23:39
|
Update of /cvsroot/wpdev/xmlscripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv17476 Modified Files: xmlconfig.py Log Message: no message Index: xmlconfig.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/xmlconfig.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** xmlconfig.py 11 Nov 2003 21:52:51 -0000 1.2 --- xmlconfig.py 11 Nov 2003 22:23:36 -0000 1.3 *************** *** 1,6 **** from xml.dom.minidom import * ! import Tkinter import Pmw class Option: --- 1,8 ---- from xml.dom.minidom import * ! import sys ! sys.path[:0] = ['../python-lib/'] import Pmw + import Tkinter class Option: *************** *** 17,21 **** ) self.y = y ! self.height = 10 for op in options: if len( op.choices ) > 0: --- 19,23 ---- ) self.y = y ! self.height = 20 for op in options: if len( op.choices ) > 0: |