fix writing repo status info to json file

This commit is contained in:
Maximilian Keßler 2022-02-09 21:51:09 +01:00
parent 038a3dca48
commit 6181704a8d

View file

@ -22,7 +22,7 @@ class RepoStatusInfo(Config):
def to_json(self) -> Dict:
return {
JSON_VERSION: self._version,
JSON_DIRTY: self._version,
JSON_DIRTY: self._dirty,
JSON_COMMIT_HASH: self._commit_hash,
JSON_BRANCH: self._branch
}