summaryrefslogtreecommitdiff
path: root/reports.py
diff options
context:
space:
mode:
authorLouis Vogt <l.uisv.gt@icloud.com>2014-07-12 01:17:13 +0200
committerLouis Vogt <l.uisv.gt@icloud.com>2014-07-12 01:17:13 +0200
commit0466cb781b876cfc4ff4bbce3ba865dd4798dec7 (patch)
tree9689f7f17928ae6eee0b21527f454b490e35dcf2 /reports.py
parentb8b86be805d13bb891974ef39b86efd042aad25a (diff)
Changed single quotes to double quotes
Diffstat (limited to 'reports.py')
-rw-r--r--reports.py18
1 files 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()