Skip to content

Commit

Permalink
Fix query glob optimization after privatization
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mracek authored and MichaelMraka committed Nov 22, 2016
1 parent 2088e4b commit 29e1f91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dnf/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def _filterm(self, *args, **kwargs):
# remove __glob when pattern is not glob
key = key[:-6]
nargs[key] = value
return super(Query, self).filterm(*args, **nargs)
return super(Query, self)._filterm(*args, **nargs)

def installed(self):
# :api
Expand Down

0 comments on commit 29e1f91

Please sign in to comment.