diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2020-09-14 09:12:18 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2020-09-14 09:12:18 +0200 |
commit | 9cffe8a839d540a7acda858ec4648206ebed63f4 (patch) | |
tree | 34bbcd8cd156c6a7d2d63ff44d202db27cb4db1c | |
parent | 5af6a1a0f32ca7c75c731b0e84cf9b234cdb757d (diff) |
Fix KConfigModel.to_json
-rw-r--r-- | lib/model.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/model.py b/lib/model.py index f7f8e5c..118a755 100644 --- a/lib/model.py +++ b/lib/model.py @@ -1229,7 +1229,7 @@ class KConfigModel: def to_json(self): output = { - "model": model.to_json(), + "model": self.model.to_json(), "symbols": self.symbols, "attribute": self.attribute, } |