Skip to content

Commit

Permalink
Merge pull request #60 from test-fullautomation/HolQue/task/feature_m…
Browse files Browse the repository at this point in the history
…aintenance

Added indentation value to JSON dump
  • Loading branch information
test-fullautomation authored Oct 11, 2023
2 parents eefdc70 + 45410aa commit 219d4d4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions GenPackageDoc/CDocBuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#
# XC-CT/ECA3-Queckenstedt
#
# 13.04.2023
# 11.10.2023
#
# --------------------------------------------------------------------------------------------------------------

Expand Down Expand Up @@ -1021,7 +1021,7 @@ def Build(self):
sDumpConfigFileJson = f"{sOutputFolder}/{sDumpConfigFileNameJson}"
try:
hDumpConfigFile = open(sDumpConfigFileJson, "w", encoding="utf-8")
json.dump(self.__dictPackageDocConfig, hDumpConfigFile)
json.dump(self.__dictPackageDocConfig, hDumpConfigFile, indent=3)
hDumpConfigFile.close()
del hDumpConfigFile
except Exception as reason:
Expand Down
Binary file modified GenPackageDoc/GenPackageDoc.pdf
Binary file not shown.
4 changes: 2 additions & 2 deletions GenPackageDoc/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
#
# Version and date of GenPackageDoc
#
VERSION = "0.41.0"
VERSION_DATE = "11.07.2023"
VERSION = "0.41.1"
VERSION_DATE = "11.10.2023"

0 comments on commit 219d4d4

Please sign in to comment.