From 58b9ec70259bbfe619d8c49822a9902b602377c8 Mon Sep 17 00:00:00 2001 From: Sfan5 Date: Thu, 14 Nov 2013 19:13:09 +0100 Subject: [PATCH] This has been bugging me for a while --- serverup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]