diff options
Diffstat (limited to 'module/pyunrar.py')
-rw-r--r-- | module/pyunrar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/pyunrar.py b/module/pyunrar.py index 1d17486a4..413d8275e 100644 --- a/module/pyunrar.py +++ b/module/pyunrar.py @@ -319,7 +319,7 @@ class Unrar(): if not statusFunction: statusFunction = lambda p: None statusFunction(0) - while ret == None or tmp: + while ret is None or tmp: tmp = p.stdout.read(1) if tmp: out += tmp |