From 7e8986b3d46b89c616833a0bed90c3fd247c12b1 Mon Sep 17 00:00:00 2001 From: Alexandre Kaskasoli Date: Thu, 29 Sep 2016 09:30:49 +0100 Subject: [PATCH] default max_comment_cols set to 120 --- rtv/content.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtv/content.py b/rtv/content.py index cab025e..9c72b33 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=80): + order=None, max_comment_cols=120): 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=80): + order=None, max_comment_cols=120): url = url.replace('http:', 'https:') # Reddit forces SSL # Sometimes reddit will return a 403 FORBIDDEN when trying to access an