Skip to content

Commit

Permalink
Merge pull request #51 from dionysio/master
Browse files Browse the repository at this point in the history
Fixed _build_query_args method when extra_query_args are passed
  • Loading branch information
iandees authored May 2, 2018
2 parents ee8e407 + 30a6bf3 commit 37dfb7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esridump/dumper.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def _build_query_args(self, query_args=None):

override_where = override_args.get('where')
requested_where = query_args.get('where')
if override_where and requested_where != '1=1':
if override_where and requested_where and requested_where != '1=1':
# AND the where args together if the user is trying to override
# the where param and we're trying to get 'all the rows'
override_args['where'] = '({}) AND ({})'.format(
Expand Down

0 comments on commit 37dfb7d

Please sign in to comment.