Changeset 4269

Show
Ignore:
Timestamp:
07/10/08 19:41:02 (1 month ago)
Author:
ed
Message:

Removed the erroneous reference to self.Source; dGrid doesn't inherit from dDataControlMixinBase.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/dabo/ui/uiwx/dGrid.py

    r4244 r4269  
    39203920            except AttributeError: 
    39213921                # See if the DataSource is a reference 
    3922                 ret = self.Source 
     3922                try: 
     3923                    ret = eval(self.DataSource) 
     3924                except StandardError:  
     3925                    # If it fails for any reason, bail. 
     3926                    pass 
    39233927            self._dataSet = ret 
    39243928        else: