Changeset 4283

Show
Ignore:
Timestamp:
07/16/08 10:33:08 (1 month ago)
Author:
ed
Message:

Fixed an uncaught exception that happens when typing gibberish into the editor and then having Python try to understand it.

Files:

Legend:

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

    r4251 r4283  
    17711771                try: 
    17721772                    o = eval("o.%s" % innerObjectNames) 
    1773                 except AttributeError
     1773                except (AttributeError, SyntaxError)
    17741774                    o = None 
    17751775        return o