Skip to content

Commit

Permalink
Fixed _build_query_args method when extra_query_args are passed
Browse files Browse the repository at this point in the history
  • Loading branch information
dionysio committed May 2, 2018
1 parent ee8e407 commit 30a6bf3
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 30a6bf3

Please sign in to comment.