From c336d051953f52b159cdccc4cecbf02627fb713b Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Sun, 3 Nov 2019 10:32:43 -0800 Subject: fix alfa for uppercase input --- alfa | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alfa b/alfa index 8229aca..6f5130b 100755 --- a/alfa +++ b/alfa @@ -54,5 +54,5 @@ if __name__ == '__main__': help='The text to translate.') args = cli.parse_args() text = " ".join(args.text) - speech = " ".join([translate(c) for c in text]) + speech = " ".join([translate(c) for c in text.lower()]) print('{}'.format(speech)) -- cgit v1.2.3