From 3f35ae20111ed49b26006ea642bc7210bbc4321f Mon Sep 17 00:00:00 2001 From: Hidden Z Date: Thu, 28 Oct 2010 19:34:35 +0000 Subject: [PATCH] py-i2phosts-fetcher: call injector with '-a' --- py-i2phosts-fetcher | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/py-i2phosts-fetcher b/py-i2phosts-fetcher index 59dc790..5d15625 100755 --- a/py-i2phosts-fetcher +++ b/py-i2phosts-fetcher @@ -68,7 +68,8 @@ for source in sources: # form commnd-line for invoke injector path = os.path.dirname(sys.argv[0]) print 'adding hosts from: %s' % source_hostname - sp_args = [path + '/py-i2phosts-injector', '-s', '-f', filename, '-d', 'Auto-added from ' + source_hostname] + sp_args = [path + '/py-i2phosts-injector', '-s', '-a', '-f', filename, '-d', + 'Auto-added from ' + source_hostname] p = subprocess.Popen(sp_args, shell=False, stdin=None, stdout=None, stderr=subprocess.STDOUT) p.wait()