summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUltrabug <ultrabug@gentoo.org>2015-01-04 19:15:33 +0100
committerUltrabug <ultrabug@gentoo.org>2015-01-04 19:15:33 +0100
commit3bc2999776a282e35f8d84181896f492c6783467 (patch)
tree843f2fa0f9833d7bd64a3805324f0fb8af1cb90a
parent3de6b56c27741deafce51ab674727174e8557bef (diff)
fix some debug typo2.0
-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):