This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author claytondarwin
Recipients claytondarwin, gpolo, terry.reedy
Date 2011-02-25.20:39:52
SpamBayes Score 0.003990048
Marked as misclassified No
Message-id <1298666392.76.0.692688250745.issue11290@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2011-02-25 20:39:52claytondarwinsetrecipients: + claytondarwin, terry.reedy, gpolo
2011-02-25 20:39:52claytondarwinsetmessageid: <1298666392.76.0.692688250745.issue11290@psf.upfronthosting.co.za>
2011-02-25 20:39:52claytondarwinlinkissue11290 messages
2011-02-25 20:39:52claytondarwincreate