Skip to content

Commit

Permalink
client.py: bug fix export_tsv for groupBy queries
Browse files Browse the repository at this point in the history
  • Loading branch information
Deep Ganguli committed Jan 22, 2014
1 parent 0d56b23 commit 0a15aeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydruid/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def export_tsv(self,dest_path):
w.writerow(line.values() + [timestamp])
else: #timeseries
w.writerow(result.values() + [timestamp])
elif self.query_type == "groupby":
elif self.query_type == "groupBy":
for item in self.result:
timestamp = item['timestamp']
version = item['version']
Expand Down

0 comments on commit 0a15aeb

Please sign in to comment.