From ac3baeffbaa63deb148c0bbb59804270ff3a4fd7 Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Thu, 19 Feb 2015 12:54:59 +0100
Subject: [PATCH] Server/py: Add space after QUIT record line uncommenter.

---
 plomrogue-server.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plomrogue-server.py b/plomrogue-server.py
index 67d2259..dfae044 100755
--- a/plomrogue-server.py
+++ b/plomrogue-server.py
@@ -59,7 +59,7 @@ def obey(cmd, io_db, path_recordfile):
     elif "PING" == tokens[0] and 1 == len(tokens):
         io_db["file_out"].write("PONG\n")
     elif "QUIT" == tokens[0] and 1 == len(tokens):
-        record("#" + cmd, path_recordfile)
+        record("# " + cmd, path_recordfile)
         raise SystemExit("received QUIT command")
     elif "MAKE_WORLD" == tokens[0] and 2 == len(tokens):
         print("I would generate a new world now, if only I knew how.")
-- 
2.30.2