Browse Source

pulled in temp fix from branch for _strptime crash

Darren Ranalli 16 years ago
parent
commit
8b82a9d61f
1 changed files with 2 additions and 0 deletions
  1. 2 0
      direct/src/showbase/PythonUtil.py

+ 2 - 0
direct/src/showbase/PythonUtil.py

@@ -3867,6 +3867,8 @@ def isInteger(n):
     return type(n) in (types.IntType, types.LongType)
 
 def configIsToday(configName):
+    # TODO: replace usage of strptime with something else
+    return False
     # returns true if config string is a valid representation of today's date
     today = time.localtime()
     confStr = config.GetString(configName, '')