Skip to content
3 changes: 0 additions & 3 deletions .github/workflows/issue62.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,4 @@ jobs:
run: |
source libcmark.sh
cd tests/issue62
echo "This is currently expected to fail with:"
echo " ERROR: Could not process ./one.md"
echo " | 'str' object has no attribute 'tzinfo'"
./compare_meta.sh
4 changes: 2 additions & 2 deletions plugins/gfm.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ def read_source(self, source_path):
name = match.group(1).strip().lower()
if name != 'slug':
value = match.group(2).strip()
if name == 'date':
value = pelican.utils.get_date(value)
# Ensure the correct types are used
value = self.process_metadata(name, value)
metadata[name] = value
#if name != 'title':
# print 'META:', name, value
Expand Down