diff --git a/serverup.py b/serverup.py index 25aabe0..88dc2ef 100755 --- a/serverup.py +++ b/serverup.py @@ -17,7 +17,7 @@ def serverup(phenny, input): if not '.' in arg: return phenny.reply("Invalid Address") if ':' in arg: - return phenny.reply("Note: Syntax changed please use 'example.org 1337' instead of 'example.org:1337'") + return phenny.reply("Syntax changed, please use 'example.org 1337' instead of 'example.org:1337'") if ' ' in arg: address = arg.split(' ')[0] port = arg.split(' ')[1]