From: <bra...@om...> - 2005-08-25 16:35:25
|
Kevin Altis wrote on 08/23/2005 08:28:42 PM: > Well this is quite annoying, either a path bug with the pythonw2.4 on > the Mac (seems most likely) or the way the paths are manipulated in > model.py is causing a problem. Anyway, I assume this is happening in > resourceEditor.py due to this line > > from modules.propertyEditor import PropertyEditor > > which is different from the other imports where we have stuff coming > from the modules directory. I'm not even sure why this was done, but > normally that kind of import is not a problem. Anyway, change it to > > from modules import propertyEditor > > and then change the following line so that the propertyEditor module is > prefixed before the class (roughly line 138). > > self.propertyEditorWindow = model.childWindow(self, > PropertyEditor) > > becomes > > self.propertyEditorWindow = model.childWindow(self, > propertyEditor.PropertyEditor) > > Then try running it again with -l to get the log and see if it bugs out > again or manages to open up. No luck. I made the two changes you suggested and get the exact same result. |