From deb7859abbf1569a4f8f6af3e27af22ad10d8a80 Mon Sep 17 00:00:00 2001 From: Dave Schuyler Date: Fri, 21 May 2004 03:05:17 +0000 Subject: [PATCH] changed .txt file extension to .log --- direct/src/directnotify/RotatingLog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/directnotify/RotatingLog.py b/direct/src/directnotify/RotatingLog.py index 68f2c7bf09..309886347c 100755 --- a/direct/src/directnotify/RotatingLog.py +++ b/direct/src/directnotify/RotatingLog.py @@ -54,7 +54,7 @@ class RotatingLog: def filePath(self): dateString=time.strftime("%Y_%m_%d_%H", time.localtime()) for i in range(26): - path="%s_%s_%s.txt"%(self.path, dateString, chr(i+97)) + path="%s_%s_%s.log"%(self.path, dateString, chr(i+97)) if not os.path.exists(path) or os.stat(path)[6] < self.sizeLimit: return path # Hmm, 26 files are full? throw the rest in z: