From f14192b0e71e9bee1456bd240ba200920abc246b Mon Sep 17 00:00:00 2001 From: cxgeorge <> Date: Sat, 1 Dec 2001 03:09:08 +0000 Subject: [PATCH] add comment --- direct/src/directnotify/Notifier.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/direct/src/directnotify/Notifier.py b/direct/src/directnotify/Notifier.py index 0b0e7b0e56..222c5cd91f 100644 --- a/direct/src/directnotify/Notifier.py +++ b/direct/src/directnotify/Notifier.py @@ -29,6 +29,9 @@ class Notifier: Return the time as a string suitable for printing at the head of any notify message """ + + # for some strange reason, time.time() updates only once/minute if + # the task is out of focus on win32. time.clock doesnt have this prob return time.strftime(":%m-%d-%Y %H:%M:%S ", time.localtime(time.time())) def __str__(self):