On Mon, Jul 7, 2008 at 7:38 PM, Nate Lowrie <[EMAIL PROTECTED]> wrote:
> File "C:\Python25\lib\site-packages\dabo-full\trunk\dabo\ui\uiwx\dGrid.py",
> li
> ne 3922, in _getDataSet
> ret = self.Source
> AttributeError: 'controlMix' object has no attribute 'Source'
Ed,
I have some feedback for you. The part in question comes from your
commit in 4186. The diff is below. Why did you make the changes you
made and where is this self.Source? I couldn't find it anyway. I
thought you might have meant to say self.DataSource but that
introduced a slew of errors.
@@ -3913,12 +3909,10 @@
ret = None
bo = self.getBizobj()
try:
- ret = self.getBizobj().getDataSet()
+ ret = bo.getDataSet()
except AttributeError:
# See if the DataSource is a reference
- try:
- ret = eval(self.DataSource)
- except: pass
+ ret = self.Source
self._dataSet = ret
else:
try:
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev
Searchable Archives: http://leafe.com/archives/search/dabo-dev
This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]