home · contact · privacy
Server/py: Minor comment improvement.
authorChristian Heller <c.heller@plomlompom.de>
Sun, 22 Feb 2015 10:51:51 +0000 (11:51 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Sun, 22 Feb 2015 10:51:51 +0000 (11:51 +0100)
plomrogue-server.py

index c9cc20e78bb4d560a34fc180e6da488c8adeeb3c..c80bbf15eee49b0306ff07ed81dec2ff520c424f 100755 (executable)
@@ -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)