From 82f9ed3048e62452caa5afdb957cc1b7f950f5ab Mon Sep 17 00:00:00 2001 From: Fbenas Date: Sun, 8 Nov 2020 13:37:31 +0000 Subject: Stop encoding --- saucypy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/saucypy b/saucypy index efe24c7..3ed0f9d 100755 --- a/saucypy +++ b/saucypy @@ -58,10 +58,10 @@ def main(): if len( matches ) > 1: exact_match = list(filter( lambda x: x == args[0], matches)) if exact_match: - print (entries[exact_match[0]].encode("utf-8")) + print (entries[exact_match[0]]) elif options.index is not None: try: - print (entries[matches[options.index]].encode("utf-8")) + print (entries[matches[options.index]]) except IndexError: print ("Match index out of range.") sys.exit( 1 ) -- cgit v1.2.3