summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 98cdbdb)
raw | patch | inline | side by side (parent: 98cdbdb)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 18 Dec 2002 00:15:53 +0000 (00:15 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 18 Dec 2002 00:15:53 +0000 (00:15 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1414 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/date.py | patch | blob | history |
diff --git a/roundup/date.py b/roundup/date.py
index 821ebaeb09a89672ba2a068108def37c13b99c84..1ac84ea218597f7c99be6b41996e4ab212e4beff 100644 (file)
--- a/roundup/date.py
+++ b/roundup/date.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: date.py,v 1.39 2002-12-16 05:03:02 richard Exp $
+# $Id: date.py,v 1.40 2002-12-18 00:15:53 richard Exp $
__doc__ = """
Date, time and time interval handling.
info = m.groupdict()
# get the current date as our default
- y,m,d = time.gmtime(time.time())[:3]
+ y,m,d,H,M,S,x,x,x = time.gmtime(time.time())
# override year, month, day parts
if info['m'] is not None and info['d'] is not None: