From ab695d17397e101447102877cdd282d825051035 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Fri, 2 Oct 2015 04:22:19 +0200 Subject: [Account] Improve parse_traffic method + code cosmetics --- module/plugins/hooks/AntiStandby.py | 4 ++-- module/plugins/hooks/ExtractArchive.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'module/plugins/hooks') 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": diff --git a/module/plugins/hooks/ExtractArchive.py b/module/plugins/hooks/ExtractArchive.py index b5a714533..9c662a897 100644 --- a/module/plugins/hooks/ExtractArchive.py +++ b/module/plugins/hooks/ExtractArchive.py @@ -7,7 +7,7 @@ import sys # monkey patch bug in python 2.6 and lower # http://bugs.python.org/issue6122 , http://bugs.python.org/issue1236 , http://bugs.python.org/issue1731717 -if sys.version_info < (2, 7) and os.name != "nt": +if sys.version_info < (2, 7) and os.name is not "nt": import errno import subprocess -- cgit v1.2.3