Fix bug introduced by changing the name of a keyword parameter

This commit is contained in:
Charles Haley 2010-06-02 17:20:02 +01:00
parent 26f5642e02
commit 0071554a9e

View File

@ -36,7 +36,7 @@ class TagsView(QTreeView): # {{{
def set_database(self, db, tag_match, popularity, restriction): def set_database(self, db, tag_match, popularity, restriction):
self.hidden_categories = config['tag_browser_hidden_categories'] 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.popularity = popularity
self.restriction = restriction self.restriction = restriction
self.tag_match = tag_match self.tag_match = tag_match