summaryrefslogtreecommitdiff
path: root/motd.py
diff options
context:
space:
mode:
Diffstat (limited to 'motd.py')
-rw-r--r--motd.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/motd.py b/motd.py
index f41e4d8..c238b20 100644
--- a/motd.py
+++ b/motd.py
@@ -1,4 +1,4 @@
-#pylint: disable=F0401
+#pylint: disable = F0401
from helpers import *
motd = server.getMotd()
@@ -7,7 +7,7 @@ motd = server.getMotd()
@hook.command("getmotd")
def on_getmotd_command(sender, args):
plugin_header(sender, "MOTD")
- msg(sender, motd, usecolor=False)
+ msg(sender, motd, usecolor = False)
@hook.command("setmotd")