We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 754698b + 90a1cff commit 0f854b0Copy full SHA for 0f854b0
.gitignore
@@ -26,7 +26,7 @@ lib/
26
pip-selfcheck.json
27
pyvenv.cfg
28
MANIFEST
29
-
+venv/
30
31
# path for the test lib.
32
tools/plex
plexapi/base.py
@@ -455,7 +455,7 @@ def __getattribute__(self, attr):
455
# Check a few cases where we dont want to reload
456
if attr in _DONT_RELOAD_FOR_KEYS: return value
457
if attr in _DONT_OVERWRITE_SESSION_KEYS: return value
458
- if attr in USER_DONT_RELOAD_FOR_KEYS: return
+ if attr in USER_DONT_RELOAD_FOR_KEYS: return value
459
if attr.startswith('_'): return value
460
if value not in (None, []): return value
461
if self.isFullObject(): return value
0 commit comments