edasque / DynamoDBtoCSV

Dump DynamoDB data into a CSV file
Apache License 2.0
471 stars 152 forks source link

Handle boolean values properly #17

Closed jcn closed 8 years ago

jcn commented 8 years ago

Fix the problem where if a boolean "false" value is encountered, it will be dumped as an empty string instead of the string "false" (this happens because items[index][header].BOOL will return evaluate to false if the value of the boolean is false.