|
@@ -3867,6 +3867,8 @@ def isInteger(n):
|
|
|
return type(n) in (types.IntType, types.LongType)
|
|
return type(n) in (types.IntType, types.LongType)
|
|
|
|
|
|
|
|
def configIsToday(configName):
|
|
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
|
|
# returns true if config string is a valid representation of today's date
|
|
|
today = time.localtime()
|
|
today = time.localtime()
|
|
|
confStr = config.GetString(configName, '')
|
|
confStr = config.GetString(configName, '')
|