Skip to content

Commit

Permalink
Fix list objects bug - fixes #464 (#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
donatello authored and minio-trusted committed Feb 1, 2017
1 parent eb31beb commit fcb9460
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion minio/parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def _parse_objects_from_xml_elts(bucket_name, contents, common_prefixes):
Object(bucket_name, urldecode(dir_elt.text()), None, '',
0, is_dir=True)
for dirs_elt in common_prefixes
for dir_elt in dirs_elt
for dir_elt in dirs_elt.findall('Prefix')
]

return objects, object_dirs
Expand Down

0 comments on commit fcb9460

Please sign in to comment.