From eaed835275b6f2d7dd9aa53eef62d7fdbaca42f6 Mon Sep 17 00:00:00 2001 From: Barbara Miller Date: Tue, 27 Feb 2018 14:45:58 -0800 Subject: [PATCH] omit comment --- warcprox/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/warcprox/controller.py b/warcprox/controller.py index 644fdec..ff63657 100644 --- a/warcprox/controller.py +++ b/warcprox/controller.py @@ -213,7 +213,7 @@ class WarcproxController(object): warcprox.ListenerPostfetchProcessor( plugin, self.options)) elif hasattr(plugin, 'CHAIN_POSITION') and plugin.CHAIN_POSITION == 'early': - self._postfetch_chain.insert(0, plugin) # or insert early but later than 0? + self._postfetch_chain.insert(0, plugin) else: self._postfetch_chain.append(plugin)