about summary refs log tree commit diff
path: root/cli/broadlink_cli
diff options
context:
space:
mode:
authorDaniel Høyer Iversen <mail@dahoiv.net>2020-03-04T21·27+0100
committerGitHub <noreply@github.com>2020-03-04T21·27+0100
commite151a14a7bea0084dcb1bb1de0ca30210b822c66 (patch)
treee30424231587059a1aab64de064e3e7d9080500a /cli/broadlink_cli
parent654db0935bf41b164bb6a1caf84d155270201dd3 (diff)
decode is not needed for python3 (#298)
Diffstat (limited to 'cli/broadlink_cli')
-rwxr-xr-xcli/broadlink_cli2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/broadlink_cli b/cli/broadlink_cli
index e608544364..2de44aa435 100755
--- a/cli/broadlink_cli
+++ b/cli/broadlink_cli
@@ -226,7 +226,7 @@ if args.rfscanlearn:
         if args.learnfile is None:
             print(learned)
             decode_hex = codecs.getdecoder("hex_codec")
-            print("Base64: {}".format(str(base64.b64encode(decode_hex(learned)[0])).decode('utf8')))
+            print("Base64: {}".format(str(base64.b64encode(decode_hex(learned)[0]))))
         if args.learnfile is not None:
             print("Saving to {}".format(args.learnfile))
             with open(args.learnfile, "w") as text_file: