From 73b65fd7a514fc975f364b6618c5fc95aa30ee1e Mon Sep 17 00:00:00 2001 From: Andreas Wrede Date: Tue, 2 Feb 2021 18:37:23 +0100 Subject: [PATCH] revert to python 3.5 --- hbc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hbc b/hbc index e5888e0..4215b35 100755 --- a/hbc +++ b/hbc @@ -245,7 +245,7 @@ def doupdate(conn, msgDict): code = codecs.decode(msgDict['code'],'base64').decode() csum = msgDict['csum'] except Exception as e: - fail = f"csum/code missing: {e}" + fail = "csum/code missing: %s" % e if not fail: fail = doupdateone(code, csum)