diff options
| -rwxr-xr-x | build.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ class Post: @property def posted(self): - return datetime.date.fromisoformat(self.content.splitlines()[1]) + return datetime.datetime.strptime(self.content.splitlines()[1], "%Y-%m-%d") @property def uri(self): |
