Skip to content
This repository has been archived by the owner on Mar 5, 2022. It is now read-only.

Commit

Permalink
Use the update API instead of directly setting value.
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Jun 10, 2016
1 parent 1606369 commit 377e0b0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion googler
Original file line number Diff line number Diff line change
Expand Up @@ -1624,7 +1624,8 @@ class GooglerCmd(object):
@require_keywords
@no_argument
def do_unfilter(self):
self._google_url._start = 0
# Reset start to 0 when unfilter is applied.
self._google_url.update(None, **{'start':0,})
self._google_url.set_queries(filter=0)
self.fetch_and_display()

Expand Down

0 comments on commit 377e0b0

Please sign in to comment.