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()
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()