From 6b4cfd8e0f6035f8c0103aca47b73cc86f5ef6a9 Mon Sep 17 00:00:00 2001 From: lucha <lucha@paranoici.org> Date: Sat, 2 Dec 2017 13:37:50 -0800 Subject: [PATCH] count-options uses on-local-blogs instead than on-all-blogs, ma per davero --- bin/count-option | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/count-option b/bin/count-option index 7a014da..09c1f0a 100755 --- a/bin/count-option +++ b/bin/count-option @@ -13,7 +13,7 @@ ALL_LOCAL_BLOGS_BIN = os.path.abspath( os.path.join(os.path.dirname(__file__), 'on-local-blogs')) def get_option(opt): - pipe = subprocess.Popen([ALL_BLOGS_BIN, 'get-option', opt], + pipe = subprocess.Popen([ALL_LOCAL_BLOGS_BIN, 'get-option', opt], stdout=subprocess.PIPE) data = defaultdict(int) for match in re.finditer('(.*): (.*)',pipe.communicate()[0]): -- GitLab