From bdad253ef55b31c2cd59a9305f6e7fc37cfe16d1 Mon Sep 17 00:00:00 2001 From: Sean Zeng Date: Sat, 21 Mar 2015 15:36:42 -0700 Subject: [PATCH] fix mistake --- src/firewall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/firewall.py b/src/firewall.py index a0af8e2..d18b64e 100644 --- a/src/firewall.py +++ b/src/firewall.py @@ -470,7 +470,7 @@ def do_ipfw(port, dnsport, family, subnets, udp): def pfctl(args, stdin = None): argv = ['pfctl'] + list(args.split(" ")) - debug1('>> %s' % ' '.join(argv), stdin) + debug1('>> %s' % ' '.join(argv)) p = ssubprocess.Popen(argv, stdin = ssubprocess.PIPE, stdout = ssubprocess.PIPE,