diff options
| author | 2018-08-31 04:14:56 +0100 | |
|---|---|---|
| committer | 2018-08-31 04:14:56 +0100 | |
| commit | 8d6f0fffa9822f9cfc6e354882a555d4df753a73 (patch) | |
| tree | bbb0e3a6c0e5c81645042ce1bb36317c9136dcce /modules/google.py | |
| parent | Update strax generator with a bunch of new phrases and attacks. (diff) | |
| signature | ||
Make channel values being inserted into SQLite integers if they're numbers.
Update ducks.py, you can now .bef and .bang! Coming soon: .friends, .killers, and .ducks
Update google to use gb instead of us. We're British goddamnit.
Diffstat (limited to 'modules/google.py')
| -rw-r--r-- | modules/google.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/google.py b/modules/google.py index b961186e..b8d5c653 100644 --- a/modules/google.py +++ b/modules/google.py @@ -19,7 +19,7 @@ class Module(object): "q": phrase, "key": self.bot.config[ "google-api-key"], "cx": self.bot.config[ "google-search-id"], "prettyPrint": "true", - "num": 1, "gl": "us"}, json=True) + "num": 1, "gl": "gb"}, json=True) if page: if "items" in page and len(page["items"]): event["stdout"].write(page["items"][0][ |
