Mercurial > piecrust2
diff piecrust/serving/server.py @ 418:d5724c0c8f1a
serve: Fix crash on start.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sat, 20 Jun 2015 23:24:17 -0700 |
parents | e7b865f8f335 |
children | 30f2c2a595f5 |
line wrap: on
line diff
--- a/piecrust/serving/server.py Sat Jun 20 23:23:51 2015 -0700 +++ b/piecrust/serving/server.py Sat Jun 20 23:24:17 2015 -0700 @@ -81,7 +81,7 @@ # use process forking and we end up going here twice. We only want # to start the pipeline loop in the inner process most of the # time so we let the implementation tell us if this is OK. - from piecrust.processing.base import ProcessorPipeline + from piecrust.processing.pipeline import ProcessorPipeline from piecrust.serving.procloop import ProcessingLoop pipeline = ProcessorPipeline(app, self._out_dir) self._proc_loop = ProcessingLoop(pipeline)