Martin Zibricky píše v Út 02. 10. 2012 v 23:24 +0200: > 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+\(.*\)")
Sorry for the mistake, it should be probably '\s*' - to accept none or more spaces at the beginning. 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.
