summaryrefslogtreecommitdiff
path: root/src/pyssg/rss.py
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2021-05-23 17:24:36 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2021-05-23 17:24:36 -0600
commite7e56c88450544360756369e3123f611fd2d9a63 (patch)
tree58c81a6736629d9a4cfa8866c877176884ed54c0 /src/pyssg/rss.py
parent6d27f928a11e55e3e3a84d8ad7240f0f2d04f921 (diff)
fix timezone
Diffstat (limited to 'src/pyssg/rss.py')
-rw-r--r--src/pyssg/rss.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pyssg/rss.py b/src/pyssg/rss.py
index ec661bb..2aa7fb0 100644
--- a/src/pyssg/rss.py
+++ b/src/pyssg/rss.py
@@ -7,7 +7,7 @@ from .configuration import Configuration
VERSION = importlib.metadata.version('pyssg')
-DFORMAT = '%a, %d %b %Y %H:%M:%S %Z'
+DFORMAT = '%a, %d %b %Y %H:%M:%S GMT'
class RSSBuilder: