From 352aefae9f0f4a150ff0ad9006e83ab6bed99bea Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Tue, 19 Jul 2016 02:02:24 -0700 Subject: [PATCH] Missed a file. --- rtv/content.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/rtv/content.py b/rtv/content.py index 2e728a5..7f78b2c 100644 --- a/rtv/content.py +++ b/rtv/content.py @@ -361,12 +361,18 @@ class SubredditContent(Content): list for repeat access. """ - def __init__(self, name, submissions, loader, order=None, listing='r', - period=None): + def __init__( + self, + name, + submissions, + loader, + order=None, + listing='r', + period=None): - self.listing = listing self.name = name self.order = order + self.listing = listing self.period = period self._loader = loader self._submissions = submissions