Skip to content

Commit

Permalink
Updated changelog for v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bantya committed Jan 13, 2019
1 parent 41c7aeb commit 2db76f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Change Log

### v2.0.1
* Some refactorings and code simplifications.

### v2.0.0
* Now you can use any random keyword possible.
* Added `https` support for `non-https` sites.
Expand Down
2 changes: 1 addition & 1 deletion src/easysearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def on_suggest(self, user_input, items_chain):
name, target = url.groups()
term = input.group(2)
name = name.strip().replace("_", " ")
target = target.strip().format(q=term.strip())
target = target.strip().format(q = term.strip())

suggestions.append(self._set_suggestion(self._create_label(engine, name, term), target))

Expand Down

0 comments on commit 2db76f0

Please sign in to comment.