Commit 8ccb82c0 authored by Shane Hathaway's avatar Shane Hathaway

In DateIndex, interpret an empty string as no date value.

parent 61df9afc
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
# #
############################################################################## ##############################################################################
"""$Id: DateIndex.py,v 1.13 2003/11/04 22:09:03 chrism Exp $ """$Id: DateIndex.py,v 1.14 2004/01/29 21:22:08 shane Exp $
""" """
from types import StringType, FloatType, IntType from types import StringType, FloatType, IntType
...@@ -176,7 +176,7 @@ class DateIndex(UnIndex): ...@@ -176,7 +176,7 @@ class DateIndex(UnIndex):
t_tup = value.toZone('UTC').parts() t_tup = value.toZone('UTC').parts()
elif type( value ) in (FloatType, IntType): elif type( value ) in (FloatType, IntType):
t_tup = time.gmtime( value ) t_tup = time.gmtime( value )
elif type( value ) is StringType: elif type( value ) is StringType and value:
t_obj = DateTime( value ).toZone('UTC') t_obj = DateTime( value ).toZone('UTC')
t_tup = t_obj.parts() t_tup = t_obj.parts()
else: else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment