Skip to content

Commit

Permalink
Merge pull request #263 from weisdd/master
Browse files Browse the repository at this point in the history
Fixes #262: Missing or duplicated results for .filter() when threading is enabled
  • Loading branch information
Zach Moody authored Jul 6, 2020
2 parents a17f55e + 509a5ff commit 064b72e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pynetbox/core/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def _make_call(self, verb="get", url_override=None, add_params=None, data=None):
params = {}
if not url_override:
if self.filters:
params = self.filters
params.update(self.filters)
if add_params:
params.update(add_params)

Expand Down

0 comments on commit 064b72e

Please sign in to comment.