From 808ff227f195cce978ca9ed554a32c52a81037bc Mon Sep 17 00:00:00 2001 From: Gordon Shumway <39967334+oddluck@users.noreply.github.com> Date: Mon, 3 Jun 2019 14:59:51 -0400 Subject: [PATCH] reduce default block width to 70 --- ASCII/plugin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ASCII/plugin.py b/ASCII/plugin.py index bed7e1c..5a5872e 100644 --- a/ASCII/plugin.py +++ b/ASCII/plugin.py @@ -542,9 +542,9 @@ class ASCII(callbacks.Plugin): if 'w' in optlist: cols = optlist.get('w') elif 'ascii' not in optlist and 'ramp' not in optlist and 'nocolor' not in optlist and 'chars' not in optlist and 'block' not in optlist and 'w' not in optlist: - cols = 75 + cols = 70 elif 'w' not in optlist and '1/4' in optlist: - cols = 75 + cols = 70 else: cols = 100 if '1/4' in optlist: @@ -949,7 +949,7 @@ class ASCII(callbacks.Plugin): w = optlist.get('w') opts += '-w {0} '.format(w) else: - opts += '-w 75 ' + opts += '-w 70 ' if 'delay' in optlist: delay = optlist.get('delay') else: