diff options
| author | 2018-09-09 09:02:15 +0100 | |
|---|---|---|
| committer | 2018-09-09 09:02:15 +0100 | |
| commit | dacf8998ebab0bcf755cb8617ed85bbcad8af363 (patch) | |
| tree | b450e1f86e433679e488cdc147c1d373ee0fa9db /modules/google.py | |
| parent | Clean up combining new.channel and __init__ channel bootstrapping (diff) | |
| parent | Merge branch 'master' into master (diff) | |
Merge pull request #19 from dngfx/master
I have no idea why ducks.py is in here. Google.py update.
Diffstat (limited to 'modules/google.py')
| -rw-r--r-- | modules/google.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/google.py b/modules/google.py index 99566ebe..f7ef398f 100644 --- a/modules/google.py +++ b/modules/google.py @@ -22,8 +22,8 @@ class Module(object): "num": 1, "gl": "gb"}, json=True) if page: if "items" in page and len(page["items"]): - event["stdout"].write(page["items"][0][ - "link"]) + event["stdout"].write("(" + Utils.bold(phrase) + ") " \ + + page["items"][0]["link"]) else: event["stderr"].write("No results found") else: |
