Found a bug with the dramione.org site adapter. Lines 231 and 235 replaces August with Auguth which generates the following error:
Quote:
time data '1th Auguth 2011' does not match format '%dth %m %Y'
|
Code:
230: if 'Published' in label:
231: value=value.replace('st','th').replace('nd','th').replace('rd','th')
232: self.story.setMetadata('datePublished', makeDate(stripHTML(value), self.dateformat))
234: if 'Updated' in label:
235: value=value.replace('st','th').replace('nd','th').replace('rd','th')
236: self.story.setMetadata('dateUpdated', makeDate(stripHTML(value), self.dateformat))