aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xserver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/server.py b/server.py
index b7d5c28..8123e88 100755
--- a/server.py
+++ b/server.py
@@ -42,7 +42,7 @@ def do_command(command, username, body, bc):
elif command == "DISCONNECT":
bc("User {} has disconnected".format(username), username)
elif command == "MESSAGE":
- bc("{}: {}".format(username, body), username)
+ bc("{}".format(body), username)
elif command == "KEEPALIVE":
pass
else: