From 5b675acd2893a8c0b5a479161f438d824022afd0 Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Thu, 31 Dec 2020 20:07:51 -0800 Subject: [PATCH] Fix default reddit source ttl type --- inquisitor/templates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inquisitor/templates.py b/inquisitor/templates.py index b33f62d..42c5e75 100644 --- a/inquisitor/templates.py +++ b/inquisitor/templates.py @@ -194,7 +194,7 @@ class RedditScraper: return tags def get_ttl(self, post): - return 60 * 60 * 24 * 7, # 1 week + return 60 * 60 * 24 * 7 # 1 week def get_ttd(self, post): return None