aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/rest.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-10-01 08:00:43 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-10-01 08:00:43 +0200
commit639dffb7d27cc49684a6cb2a8ad57b936b1e01dc (patch)
tree1a11bc1ea366bb9eb2df2af82e3e394e4bfcbb04 /pyaggr3g470r/rest.py
parentRelease 5.6.6. (diff)
downloadnewspipe-639dffb7d27cc49684a6cb2a8ad57b936b1e01dc.tar.gz
newspipe-639dffb7d27cc49684a6cb2a8ad57b936b1e01dc.tar.bz2
newspipe-639dffb7d27cc49684a6cb2a8ad57b936b1e01dc.zip
Python 3 support
Diffstat (limited to 'pyaggr3g470r/rest.py')
-rw-r--r--pyaggr3g470r/rest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/rest.py b/pyaggr3g470r/rest.py
index 8dcdf43f..a3c63c1d 100644
--- a/pyaggr3g470r/rest.py
+++ b/pyaggr3g470r/rest.py
@@ -34,7 +34,7 @@ from flask.ext.restful import Resource, reqparse
import conf
if not conf.ON_HEROKU:
- import search as fastsearch
+ import pyaggr3g470r.search as fastsearch
from pyaggr3g470r import api, db
from pyaggr3g470r.models import User, Article, Feed
bgstack15