From: Christian Heller <c.heller@plomlompom.de>
Date: Sun, 22 Feb 2015 10:51:51 +0000 (+0100)
Subject: Server/py: Minor comment improvement.
X-Git-Tag: tce~502
X-Git-Url: https://plomlompom.com/repos/%7B%7Bdb.prefix%7D%7D/%7B%7B%20web_path%20%7D%7D/decks/static/templates?a=commitdiff_plain;h=62e9ba1755e8299e945153247af53b4fc268df21;p=plomrogue

Server/py: Minor comment improvement.
---

diff --git a/plomrogue-server.py b/plomrogue-server.py
index c9cc20e..c80bbf1 100755
--- a/plomrogue-server.py
+++ b/plomrogue-server.py
@@ -80,8 +80,8 @@ def obey(cmd, io_db, prefix):
 def record(cmd, io_db):
     """Append cmd string plus newline to file at path_recordfile. (Atomic.)"""
     # This misses some optimizations from the original record(), namely only
-    # finishing the atomic write with flush() and fsync() every 15 seconds
-    # unless explicitely forced. Implement as needed.
+    # finishing the atomic write with expensive flush() and fsync() every 15
+    # seconds unless explicitely forced. Implement as needed.
     path_tmp = io_db["path_record"] + io_db["tmp_suffix"]
     if os.access(io_db["path_record"], os.F_OK):
         shutil.copyfile(io_db["path_record"], path_tmp)