From 357aaa76a113fe4862980a2e11091ba998790359 Mon Sep 17 00:00:00 2001 From: facetoe Date: Sat, 20 Feb 2016 22:51:27 +0800 Subject: [PATCH] Fix uneven quotes in status command. --- i3pystatus/openvpn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i3pystatus/openvpn.py b/i3pystatus/openvpn.py index 55b7c96..48d1792 100644 --- a/i3pystatus/openvpn.py +++ b/i3pystatus/openvpn.py @@ -23,7 +23,7 @@ class OpenVPN(IntervalModule): status_up = '▲' status_down = '▼' format = "{vpn_name} {status}" - status_command = "bash -c \"systemctl show openvpn@%(vpn_name)s | grep 'ActiveState=active'" + status_command = "bash -c 'systemctl show openvpn@%(vpn_name)s | grep ActiveState=active'" label = '' vpn_name = ''