summaryrefslogtreecommitdiff
path: root/saucypy
diff options
context:
space:
mode:
Diffstat (limited to 'saucypy')
-rwxr-xr-xsaucypy4
1 files 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 )