diff options
author | 2015-10-02 04:22:19 +0200 | |
---|---|---|
committer | 2015-10-02 04:22:19 +0200 | |
commit | ab695d17397e101447102877cdd282d825051035 (patch) | |
tree | 28f9f62ffc57888b76ca32540dbf5af3a4cfc8d0 /module/plugins/hooks/AntiStandby.py | |
parent | [UptoboxCom] Fix https://github.com/pyload/pyload/issues/1530 and https://git... (diff) | |
download | pyload-ab695d17397e101447102877cdd282d825051035.tar.xz |
[Account] Improve parse_traffic method + code cosmetics
Diffstat (limited to 'module/plugins/hooks/AntiStandby.py')
-rw-r--r-- | module/plugins/hooks/AntiStandby.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/AntiStandby.py b/module/plugins/hooks/AntiStandby.py index 48b86fa55..fbb7f6760 100644 --- a/module/plugins/hooks/AntiStandby.py +++ b/module/plugins/hooks/AntiStandby.py @@ -59,7 +59,7 @@ class AntiStandby(Addon): self.interval = max(self.get_config('interval'), self.MIN_INTERVAL) self.init_periodical(threaded=True) - if os.name == "nt": + if os.name is "nt": self.win_standby(system, display) elif sys.platform == "darwin": @@ -76,7 +76,7 @@ class AntiStandby(Addon): except OSError: pass - if os.name == "nt": + if os.name is "nt": self.win_standby(True) elif sys.platform == "darwin": |