Skip to content

Commit

Permalink
__str__ returns dict (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheng Yichao authored and gianm committed May 13, 2017
1 parent 3e26809 commit a060052
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydruid/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def export_pandas(self):
return df

def __str__(self):
return self.result
return str(self.result)

def __len__(self):
return len(self.result)
Expand Down

0 comments on commit a060052

Please sign in to comment.