# HG changeset patch # User Ludovic Chabant # Date 1434867857 25200 # Node ID d5724c0c8f1af3fa4ee3546fdc62883ec239d55f # Parent eef887cec7762fd0793fe5f290d14ea999102d6a serve: Fix crash on start. diff -r eef887cec776 -r d5724c0c8f1a piecrust/serving/server.py --- 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)