Fixed number #4076: django.utils.feedgenerator now corectly handles times without timezones. Thanks, Alastair Tse.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6233 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
27d027782c
commit
eb11615baa
|
@ -27,7 +27,10 @@ def rfc2822_date(date):
|
|||
return email.Utils.formatdate(time.mktime(date.timetuple()))
|
||||
|
||||
def rfc3339_date(date):
|
||||
return date.strftime('%Y-%m-%dT%H:%M:%SZ')
|
||||
if date.tzinfo:
|
||||
return date.strftime('%Y-%m-%dT%H:%M:%S%z')
|
||||
else:
|
||||
return date.strftime('%Y-%m-%dT%H:%M:%SZ')
|
||||
|
||||
def get_tag_uri(url, date):
|
||||
"Creates a TagURI. See http://diveintomark.org/archives/2004/05/28/howto-atom-id"
|
||||
|
|
Loading…
Reference in New Issue