PoMoCo.py

I uploaded Servotor32 2.0 to the PoMoCo board. Verified that’s what’s running using the serial monitor and the V command.
When I run PoMoCo 1.0 (which worked with Servotor 1.7), I get the following traceback.
I’m using a Macbook Pro OSX 10.7.5, python 2.7.3 and pyserial 2.6.

Any ideas what’s wrong?
Greg

Traceback (most recent call last):
File “PoMoCo.py”, line 40, in
GUI.startGUI(controller)
File “PoMoCo/GUI.py”, line 241, in startGUI
app = App(root,controller)
File “PoMoCo/GUI.py”, line 54, in init
self.addSpace([0,12+i*5])
File “PoMoCo/GUI.py”, line 113, in addSpace
l2.pack()
File “/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/Tkinter.py”, line 1806, in pack_configure
+ self._options(cnf, kw))
_tkinter.TclError: cannot use geometry manager pack inside .4476043992 which already has slaves managed by grid

Commenting out line 113 in GUI.py (l2.pack()) seems to fix the problem.
Googling seems to indicate that grid and pack shouldn’t be mixed.

Am I using old code?

Thanks,
Greg