~mmcg069/software-center/viewswitcher2

« back to all changes in this revision

Viewing changes to softwarecenter/view/appview.py

  • Committer: Matthew McGowan
  • Date: 2010-11-24 12:09:40 UTC
  • mfrom: (794.89.216 trunk)
  • Revision ID: matthew.joseph.mcgowan@gmail.com-20101124120940-ap61f215kj09dbr3
merge w trunk and resolve.

Show diffs side-by-side

added added

removed removed

Lines of Context:
176
176
        if isinstance(search_query, xapian.Query):
177
177
            search_query = [search_query]
178
178
        self.search_query = search_query
179
 
        with ExecutionTime("populate model from query"):
 
179
        with ExecutionTime("populate model from query: '%s'" % " ; ".join([
 
180
                q.get_description() for q in search_query])):
180
181
            self._perform_search()
181
182
 
182
183
    def _perform_search(self):