summaryrefslogtreecommitdiff
path: root/check.py
diff options
context:
space:
mode:
authorPanFritz <redstonenoobpan@gmail.com>2015-09-13 00:56:52 +0200
committerPanFritz <redstonenoobpan@gmail.com>2015-09-13 00:56:52 +0200
commita1973b666636cbd554cc4c261f6159c9b4c181eb (patch)
treec8eeab2514a0b16a967c381ce5f531a849d1a349 /check.py
parentfff55eb0169e9c3f884c4922a0bfc89dcab3ce1f (diff)
Fixed syntax error
Diffstat (limited to 'check.py')
-rw-r--r--check.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/check.py b/check.py
index f7924b8..33ffb57 100644
--- a/check.py
+++ b/check.py
@@ -87,7 +87,7 @@ def on_hook_command(sender, command, label, args):
msg(sender, "&7Please notice that the data may not be fully accurate!")
player = server.getOfflinePlayer(args[0]) if len(args) > 0 else None
- t = threading.Thread(target=get_all_data args=(sender, player))
+ t = threading.Thread(target=get_all_data, args=(sender, player))
t.daemon = True
t.start()
else: