Skip to content

Commit 6489cb9

Browse files
committed
Fix bug with printing project version status when null
1 parent e913b6a commit 6489cb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openlayer/project_versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def refresh(self):
126126

127127
def print_status_report(self):
128128
"""Prints the status report along with its status message."""
129-
print("Status:", self.status.value, "(" + self.status_message + ")")
129+
print("Status:", self.status.value, "(" + f"{self.status_message}" + ")")
130130

131131
def print_goal_report(self):
132132
"""Prints the goal results of the project version."""

0 commit comments

Comments
 (0)