mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-30 15:35:02 +01:00
Fix bug introduced by changing the name of a keyword parameter
This commit is contained in:
parent
26f5642e02
commit
0071554a9e
1 changed files with 1 additions and 1 deletions
|
|
@ -36,7 +36,7 @@ def __init__(self, *args):
|
|||
|
||||
def set_database(self, db, tag_match, popularity, restriction):
|
||||
self.hidden_categories = config['tag_browser_hidden_categories']
|
||||
self._model = TagsModel(db, parent=self, hidden_columns=self.hidden_categories)
|
||||
self._model = TagsModel(db, parent=self, hidden_categories=self.hidden_categories)
|
||||
self.popularity = popularity
|
||||
self.restriction = restriction
|
||||
self.tag_match = tag_match
|
||||
|
|
|
|||
Loading…
Reference in a new issue