[Zope] Re: [Zope-CMF] Zope CMF blackout

Dieter Maurer dieter@handshake.de
Fri, 30 Aug 2002 22:38:12 +0200


Chetan Kumar writes:
 > My CMF based site suddenly started giving problems.
 > ....
 > Traceback
 > ...
 >     (Object: semi_split)
 >   File /home1/sepg/Src/lib/python/Products/CMFDefault/DublinCore.py, 
 > line 216, i
 > n DefaultDublinCoreImpl
 >   File /home1/sepg/Src/lib/python/DateTime/DateTime.py, line 35, in __init__
 > RangeError: month out of range (1-12): 0
"CMFDefault" cannot be successfully imported.

Look at line 216 of "DublinCore.py". There a month "0" is passed to "DateTime".
It responds with a RangeError exception.

Find out, where this "0" comes from and prevent it from coming up...


Dieter