summaryrefslogtreecommitdiff
path: root/reports.py
diff options
context:
space:
mode:
authorPanFritz <redstonenoobpan@gmail.com>2015-04-13 20:57:25 +0200
committerPanFritz <redstonenoobpan@gmail.com>2015-04-13 20:57:25 +0200
commitf45da9bf42b3f8d33b5d01083dc9280062e685f7 (patch)
tree07a9f2d545aae69bba6f50b74ba14e85a6bae94d /reports.py
parent055a9073f4145bae24bee37aa1feedbd6d3c301c (diff)
Fix missing ()
Diffstat (limited to 'reports.py')
-rw-r--r--reports.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/reports.py b/reports.py
index b964f33..f4462e7 100644
--- a/reports.py
+++ b/reports.py
@@ -102,7 +102,7 @@ def on_rp_command(sender, command, label, args):
if sender.hasPermission(rp_permission):
plugin_header(sender, "Reports")
if len(args) > 0:
- subcmd = args[0].lower
+ subcmd = args[0].lower()
if subcmd == "closed":
# needs to run in seperate thread because of getOfflinePlayer
thread.start_new_thread(print_list, (sender, True,))