Open GoogleCodeExporter opened 9 years ago
The problem is the regex. I had a similar issue yesterday:
signature = re.compile('\[(.+?)\]\r\nsignature = (.+?)\r\nep_only = (.+?)\r\n',
re.M|re.S)
Try changing it to the following and rerun the script:
signature = re.compile('\[(.+?)\]\nsignature = (.+?)\nep_only = (.+?)\n',
re.M|re.S)
Original comment by m...@zentific.com
on 4 Feb 2013 at 7:02
Original issue reported on code.google.com by
gertho...@gmail.com
on 22 Jan 2013 at 11:16Attachments: