From d98ca8300878c4672a435465fb5df35344e47ffa Mon Sep 17 00:00:00 2001 From: Gordon Shumway <39967334+oddluck@users.noreply.github.com> Date: Mon, 29 Jul 2019 18:48:00 -0400 Subject: [PATCH] a2m: fix broken --p option --- ASCII/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ASCII/plugin.py b/ASCII/plugin.py index 95df151..48d6567 100644 --- a/ASCII/plugin.py +++ b/ASCII/plugin.py @@ -1280,7 +1280,7 @@ class ASCII(callbacks.Plugin): if 'n' in optlist: opts += '-n '.format(n) if 'p' in optlist: - opts += '-p '.format(p) + opts += '-p ' if 't' in optlist: t = optlist.get('t') opts += '-t {0} '.format(t)