Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/general.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2021-02-17 14:54:45 +0100
committerAnton Hvornum <anton.feeds@gmail.com>2021-02-17 14:54:45 +0100
commita9ce3e539028b2484991d21528a09cc3f41210de (patch)
tree8f64ba9bbd67da9438493c73a8209e19eabb9e1a /archinstall/lib/general.py
parent930fc994d94132fc7676f4297465a2ad90487b75 (diff)
Testing auto-filter in the JSON encoder based on ! points markering sensitive data.
Diffstat (limited to 'archinstall/lib/general.py')
-rw-r--r--archinstall/lib/general.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/archinstall/lib/general.py b/archinstall/lib/general.py
index dc94b063..97ad1565 100644
--- a/archinstall/lib/general.py
+++ b/archinstall/lib/general.py
@@ -45,7 +45,10 @@ class JSON_Encoder:
else:
val = JSON_Encoder._encode(val)
del(obj[key])
- obj[JSON_Encoder._encode(key)] = val
+ if type(key) == str and key[0] == '!':
+ obj[JSON_Encoder._encode(key)] = '******'
+ else:
+ obj[JSON_Encoder._encode(key)] = val
return obj
elif hasattr(obj, 'json'):
return obj.json()