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:
Diffstat (limited to 'archinstall/lib/general.py')
-rw-r--r--archinstall/lib/general.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/archinstall/lib/general.py b/archinstall/lib/general.py
index c85208ec..473f85a4 100644
--- a/archinstall/lib/general.py
+++ b/archinstall/lib/general.py
@@ -79,7 +79,8 @@ def jsonify(obj: Any, safe: bool = True) -> Any:
return str(obj)
if hasattr(obj, "__dict__"):
return vars(obj)
- return str(obj)
+
+ return obj
class JSON(json.JSONEncoder, json.JSONDecoder):
"""