From b81fe42d4bdfe979410d5688b2ce563372f7bbaa Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Thu, 10 May 2012 17:50:54 +0000 Subject: [PATCH] turning off null connection on -o when --tor used (not compatible) --- lib/core/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/common.py b/lib/core/common.py index d7cdabdd5..4e6e99e9b 100644 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -2367,7 +2367,7 @@ def setOptimize(): #conf.predictOutput = True conf.keepAlive = True conf.threads = 3 if conf.threads < 3 else conf.threads - conf.nullConnection = not any([conf.data, conf.textOnly, conf.titles, conf.string, conf.regexp]) + conf.nullConnection = not any([conf.data, conf.textOnly, conf.titles, conf.string, conf.regexp, conf.tor]) if not conf.nullConnection: debugMsg = "turning off --null-connection switch used indirectly by switch -o"