Changed single quotes to double quotes

This commit is contained in:
Louis Vogt
2014-07-12 01:17:13 +02:00
parent b8b86be805
commit 0466cb781b

View File

@@ -97,15 +97,15 @@ def onReportCommand(sender, args):
loc = sender.getLocation() loc = sender.getLocation()
reporter = sender.name reporter = sender.name
report = { report = {
'player': reporter, "player": reporter,
'msg': text, "msg": text,
'x': int(loc.x), "x": int(loc.x),
'y': int(loc.y), "y": int(loc.y),
'z': int(loc.z), "z": int(loc.z),
'yaw': int(loc.yaw), "yaw": int(loc.yaw),
'pitch': int(loc.pitch), "pitch": int(loc.pitch),
'world': loc.getWorld().name, "world": loc.getWorld().name,
'time': time.strftime(time_format) "time": time.strftime(time_format)
} }
reports.append(report) reports.append(report)
saveReports() saveReports()