Skip to content

Commit 102811e

Browse files
authored
Update data.py
1 parent 475ac48 commit 102811e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

obplayer/data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -753,6 +753,6 @@ def save_settings(self, settings):
753753
def list_settings(self, hidepasswords=False):
754754
result = {}
755755
for name, value in self.settings_cache.items():
756-
if not hidepasswords or not name.endswith("_password"):
756+
if not hidepasswords or not name.endswith('_password') and not name.endswith('_access_key') and not name.endswith('_access_key_id'):
757757
result[name] = value
758758
return result

0 commit comments

Comments
 (0)