diff options
author | asciimoo <asciimoo@gmail.com> | 2013-10-15 19:11:43 +0200 |
---|---|---|
committer | asciimoo <asciimoo@gmail.com> | 2013-10-15 19:11:43 +0200 |
commit | d793c2733c7aac3aacf40f3f5cf9fc0919305e76 (patch) | |
tree | 0a6f500a17f14d9da4921ad8fbeaf63f1ebccac1 /examples | |
parent | c3b7ed868783691d5678977779e91568cc2f2fec (diff) | |
download | searxng-d793c2733c7aac3aacf40f3f5cf9fc0919305e76.tar.gz searxng-d793c2733c7aac3aacf40f3f5cf9fc0919305e76.zip |
[enh] engine types
Diffstat (limited to 'examples')
-rw-r--r-- | examples/basic_engine.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/basic_engine.py b/examples/basic_engine.py index 1ed5a3388..36fb62605 100644 --- a/examples/basic_engine.py +++ b/examples/basic_engine.py @@ -17,5 +17,5 @@ def response(resp): '''post-response callback resp: requests response object ''' - return [resp.text] + return [{'url': '', 'title': '', 'content': ''}] |