gallantlab / cottoncandy

sugar for s3
http://gallantlab.github.io/cottoncandy/
BSD 2-Clause "Simplified" License
33 stars 16 forks source link

minor fix to make lsdir work in python3. turn generators into lists #59

Closed r-b-g-b closed 6 years ago

r-b-g-b commented 6 years ago

Python 3 looooves generators. Everything is a generator. Nothing is a list. lsdir relies on dict.values() and map to return lists, but in python3 they are dict_values and generator. Force these things to be lists in python2 and 3.