Remove backend for do() calls
This commit is contained in:
parent
40a8bc0ce1
commit
628c63f899
33 changed files with 112 additions and 113 deletions
|
|
@ -97,7 +97,7 @@ class Handjoob(ReplApplication):
|
|||
"""
|
||||
self.change_path([u'search'])
|
||||
self.start_format(pattern=pattern)
|
||||
for backend, job_advert in self.do('search_job', pattern):
|
||||
for job_advert in self.do('search_job', pattern):
|
||||
self.cached_format(job_advert)
|
||||
|
||||
@defaultcount(10)
|
||||
|
|
@ -108,7 +108,7 @@ class Handjoob(ReplApplication):
|
|||
Search for an advert matching to advanced filters.
|
||||
"""
|
||||
self.change_path([u'advanced'])
|
||||
for backend, job_advert in self.do('advanced_search_job'):
|
||||
for job_advert in self.do('advanced_search_job'):
|
||||
self.cached_format(job_advert)
|
||||
|
||||
def complete_info(self, text, line, *ignored):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue