From 9abcb236527834e511ca28d199d6f436c7cfcb9c Mon Sep 17 00:00:00 2001 From: Gordon Shumway <39967334+oddluck@users.noreply.github.com> Date: Sat, 4 May 2019 16:36:16 -0400 Subject: [PATCH] tdf lower() fontname --- ASCII/plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ASCII/plugin.py b/ASCII/plugin.py index ed75cc4..b77722c 100644 --- a/ASCII/plugin.py +++ b/ASCII/plugin.py @@ -768,7 +768,7 @@ class ASCII(callbacks.Plugin): opts = '' if 'f' in optlist: f = optlist.get('f') - opts += '-f {0} '.format(f) + opts += '-f {0} '.format(f.lower()) else: opts += '-r ' if 'j' in optlist: @@ -889,7 +889,7 @@ class ASCII(callbacks.Plugin): """ reply = ", ".join(sorted(os.listdir("/usr/local/share/tdfiglet/fonts/"))) irc.reply("http://www.roysac.com/thedrawfonts-tdf.html", prefixNick=False, private=True, notice=True) - irc.reply(reply, prefixNick=False, private=True, notice=True) + irc.reply(reply, prefixNick=False) fonts = wrap(fonts) def cq(self, irc, msg, args):