From cd0358de2b56fcf4b6031b225bb52c98edc0397e Mon Sep 17 00:00:00 2001 From: Louis Vogt Date: Sat, 12 Jul 2014 01:17:13 +0200 Subject: [PATCH] Changed single quotes to double quotes --- reports.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/reports.py b/reports.py index c258414..c084074 100644 --- a/reports.py +++ b/reports.py @@ -97,15 +97,15 @@ def onReportCommand(sender, args): loc = sender.getLocation() reporter = sender.name report = { - 'player': reporter, - 'msg': text, - 'x': int(loc.x), - 'y': int(loc.y), - 'z': int(loc.z), - 'yaw': int(loc.yaw), - 'pitch': int(loc.pitch), - 'world': loc.getWorld().name, - 'time': time.strftime(time_format) + "player": reporter, + "msg": text, + "x": int(loc.x), + "y": int(loc.y), + "z": int(loc.z), + "yaw": int(loc.yaw), + "pitch": int(loc.pitch), + "world": loc.getWorld().name, + "time": time.strftime(time_format) } reports.append(report) saveReports()