Skip to content

Commit

Permalink
Bump to 3.12.6 and fix padding in report
Browse files Browse the repository at this point in the history
  • Loading branch information
rudolphpienaar committed May 24, 2024
1 parent 7ccb954 commit cdae45f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions pypx/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -692,12 +692,12 @@ def seriesStatus_print(self, **kwargs) -> str:
str_seriesInstanceUID = v
if studyIndex >= 0:
if seriesIndex >= 0:
str_receivedCount = "%03d" % d_status["images"]["received"]["count"]
str_requestedCount = "%03d" % d_status["images"]["requested"]["count"]
str_packedCount = "%03d" % d_status["images"]["packed"]["count"]
str_pushedCount = "%03d" % d_status["images"]["pushed"]["count"]
str_registeredCount = "%03d" % d_status["images"]["registered"]["count"]
str_status = "%s %s %s │ " % (
str_receivedCount = "%04d" % d_status["images"]["received"]["count"]
str_requestedCount = "%04d" % d_status["images"]["requested"]["count"]
str_packedCount = "%04d" % d_status["images"]["packed"]["count"]
str_pushedCount = "%04d" % d_status["images"]["pushed"]["count"]
str_registeredCount = "%04d" % d_status["images"]["registered"]["count"]
str_status = "%s %s %s │ " % (
d_status["state"]["study"],
d_status["state"]["series"],
d_status["state"]["images"],
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def readme():

setup(
name="pypx",
version="3.12.4",
version="3.12.6",
description="PACS/ChRIS core tools and utils",
long_description=readme(),
python_requires=">= 3.8",
Expand Down

0 comments on commit cdae45f

Please sign in to comment.