2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00

codecs.getreader ("utf-8") added again

without python3.4 fails
This commit is contained in:
Nils 2018-03-29 08:50:21 +02:00
parent 727fc7180d
commit e2db693c0d

View File

@ -82,8 +82,10 @@ except IOError as exc:
print("Failed to request Flypool API: {}".format(exc), file=sys.stderr)
sys.exit(9)
reader = codecs.getreader("utf-8")
try:
mining_stats = json.load(mining_stats_raw)
mining_stats = json.load(reader(mining_stats_raw))
except ValueError:
print("Failed to parse JSON responce.", file=sys.stderr)
sys.exit(9)