Boštjan Mejak
2013-03-16 21:37:10 UTC
Robin, you made a regex in Phoenix source code in buildtools/config.py on
line 866 which is:
result = re.search('^\s+SONAME\s+(.+)$', output, re.MULTILINE)
Don't you mean this:
result = re.search('^\s+SOName\s+(.+)$', output, re.MULTILINE)
Notice SONAME vs. SOName thing changed in the regex.
line 866 which is:
result = re.search('^\s+SONAME\s+(.+)$', output, re.MULTILINE)
Don't you mean this:
result = re.search('^\s+SOName\s+(.+)$', output, re.MULTILINE)
Notice SONAME vs. SOName thing changed in the regex.
--
You received this message because you are subscribed to the Google Groups "wxPython-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wxpython-users+***@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
You received this message because you are subscribed to the Google Groups "wxPython-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wxpython-users+***@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.