Fixed a typo from eaxct_search to exact_search.

svn: r14995
This commit is contained in:
Rob G. Healey 2010-04-02 00:04:13 +00:00
parent 2f05c0f1b1
commit 4994fb128b

View File

@ -231,7 +231,7 @@ class BaseSelector(ManagedWindow.ManagedWindow):
""" """
Builds the default filters and add them to the filter bar. Builds the default filters and add them to the filter bar.
""" """
cols = [(pair[3], pair[1], pair[0] in self.eaxct_search()) cols = [(pair[3], pair[1], pair[0] in self.exact_search())
for pair in self.column_order() for pair in self.column_order()
if pair[0] if pair[0]
] ]