diff options
| author | Ultrabug <ultrabug@gentoo.org> | 2015-01-04 19:15:33 +0100 |
|---|---|---|
| committer | Ultrabug <ultrabug@gentoo.org> | 2015-01-04 19:15:33 +0100 |
| commit | 3bc2999776a282e35f8d84181896f492c6783467 (patch) | |
| tree | 843f2fa0f9833d7bd64a3805324f0fb8af1cb90a | |
| parent | 3de6b56c27741deafce51ab674727174e8557bef (diff) | |
fix some debug typo2.0
| -rwxr-xr-x | py3status/__init__.py | 2 |
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): |
