aboutsummaryrefslogtreecommitdiff
path: root/src/lib/article_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/article_utils.py')
-rw-r--r--src/lib/article_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/article_utils.py b/src/lib/article_utils.py
index 49494e85..9891e29f 100644
--- a/src/lib/article_utils.py
+++ b/src/lib/article_utils.py
@@ -23,7 +23,7 @@ def extract_id(entry):
async def construct_article(entry, feed, fields=None, fetch=True):
- "Safe method to transorm a feedparser entry into an article"
+ "Safe method to transform a feedparser entry into an article"
now = datetime.utcnow()
article = {}
def push_in_article(key, value):
bgstack15