From da35f8cb533f6d469da51cb304a3ee62a35764dd Mon Sep 17 00:00:00 2001 From: Alexandre Kaskasoli Date: Wed, 28 Sep 2016 21:13:39 +0100 Subject: [PATCH] set max_comment_cols=80 --- rtv/content.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtv/content.py b/rtv/content.py index cc0c9d1..cab025e 100644 --- a/rtv/content.py +++ b/rtv/content.py @@ -295,7 +295,7 @@ class SubmissionContent(Content): """ def __init__(self, submission, loader, indent_size=2, max_indent_level=8, - order=None, max_comment_cols=70): + order=None, max_comment_cols=80): submission_data = self.strip_praw_submission(submission) comments = self.flatten_comments(submission.comments) @@ -312,7 +312,7 @@ class SubmissionContent(Content): @classmethod def from_url(cls, reddit, url, loader, indent_size=2, max_indent_level=8, - order=None, max_comment_cols=70): + order=None, max_comment_cols=80): url = url.replace('http:', 'https:') # Reddit forces SSL # Sometimes reddit will return a 403 FORBIDDEN when trying to access an