Change S3 S3_ALL_BUCKETS response to return bucket creation_date in iso format.
This commit is contained in:
parent
769c41e5a8
commit
19bf8bf762
@ -1482,7 +1482,7 @@ S3_ALL_BUCKETS = """<ListAllMyBucketsResult xmlns="http://s3.amazonaws.com/doc/2
|
|||||||
{% for bucket in buckets %}
|
{% for bucket in buckets %}
|
||||||
<Bucket>
|
<Bucket>
|
||||||
<Name>{{ bucket.name }}</Name>
|
<Name>{{ bucket.name }}</Name>
|
||||||
<CreationDate>{{ bucket.creation_date }}</CreationDate>
|
<CreationDate>{{ bucket.creation_date.isoformat() }}</CreationDate>
|
||||||
</Bucket>
|
</Bucket>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</Buckets>
|
</Buckets>
|
||||||
|
Loading…
Reference in New Issue
Block a user