Mercurial > hg > wordstream
changeset 9:ab37ae0e9cc0
fix imports
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 24 Nov 2020 08:55:28 -0800 |
parents | f53171b2acf4 |
children | bad7e66f4f24 |
files | wordstream/dispatcher.py |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/wordstream/dispatcher.py Tue Nov 03 10:13:50 2020 -0800 +++ b/wordstream/dispatcher.py Tue Nov 24 08:55:28 2020 -0800 @@ -5,13 +5,14 @@ import os -from handlers import Index, Feed, Eat, ViewCorpus, Dissociate +from .api import Corpus +from .handlers import Index, Feed, Eat, ViewCorpus, Dissociate from genshi.template import TemplateLoader from paste.fileapp import FileApp from pkg_resources import resource_filename from webob import Request, Response, exc -from wordstream.api import Corpus + class Dispatcher(object):