Nathan Weston píše v Út 02. 10. 2012 v 17:13 -0400: > We fixed this locally by changing the strip() to rstrip(), but I'm > not > sure that's the best fix. Is the strip() call needed at all? Would it > be > better to fix the regex?
Hi Nathan, thanks for reporting. I think better would be to fix the regex. Could you please test if it would work to replace some of '\s+' by '\s?' probably the regex would be like: lddPattern = re.compile(r"\s?(.*?)\s+=>\s+(.*?)\s+\(.*\)") -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
