summaryrefslogtreecommitdiffstats
path: root/py3status/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'py3status/__init__.py')
-rwxr-xr-xpy3status/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/py3status/__init__.py b/py3status/__init__.py
index d698ab6..ebcd1b2 100755
--- a/py3status/__init__.py
+++ b/py3status/__init__.py
@@ -538,7 +538,7 @@ class Events(Thread):
We rate limit this command to 1/s for obvious abusive behavior.
"""
if time() > (self.last_refresh_ts + 1):
- call(['killall', '-s', 'USR1', '__init__.py'])
+ call(['killall', '-s', 'USR1', 'py3status'])
self.last_refresh_ts = time()
def on_click_dispatcher(self, module_name, command):