Mercurial > piecrust2
changeset 418:d5724c0c8f1a
serve: Fix crash on start.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sat, 20 Jun 2015 23:24:17 -0700 |
parents | eef887cec776 |
children | 6801ad5aa1d4 |
files | piecrust/serving/server.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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)