diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2014-07-04 16:49:34 +0200 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2014-07-04 16:49:34 +0200 |
| commit | cebf5868b33659d9b66f949c9c78f4101bd3b925 (patch) | |
| tree | d914825b1e8434a202dc8ccc4d36fb407d01b312 | |
| parent | 0564713fd3bad48d79b0ab2076eebd6a4ddb6a55 (diff) | |
[fix] pep8
| -rw-r--r-- | searx/webapp.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index 3b121875b..2264382fc 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -17,7 +17,8 @@ along with searx. If not, see < http://www.gnu.org/licenses/ >. (C) 2013- by Adam Tauber, <asciimoo@gmail.com> ''' -from gevent import monkey; monkey.patch_all() +from gevent import monkey +monkey.patch_all() if __name__ == '__main__': |