Clayton Darwin <claytondar...@gmail.com> added the comment:

This is a simple work around.  

def fix_tcl_error(s):

    if '\\' in s and not ' ' in s:
        s = '{'+s+'}'

    return s

You can get the text from the Combobox with no issues.  The error is in posting 
it to the Combobox when you have backslashes and no spaces (I think).  I have 
just been running everything through this def before adding it.  It has worked 
with no problems so far using Windows paths and grep-type search strings.

CD

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue11290>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to