summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xpy3status/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/py3status/__init__.py b/py3status/__init__.py
index 49bd97e..83fa31a 100755
--- a/py3status/__init__.py
+++ b/py3status/__init__.py
@@ -1041,7 +1041,7 @@ class Py3statusWrapper():
try:
log_level = LOG_ERR if level == 'error' else LOG_WARNING
syslog(log_level, msg)
- call(
+ Popen(
['i3-nagbar', '-m', msg, '-t', level],
stdout=open('/dev/null', 'w'),
stderr=open('/dev/null', 'w')