1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-26 01:46:13 +01:00

Fix ValueEror message in _private.common.print_msg

This commit is contained in:
Daniel Mach 2023-01-20 13:28:10 +01:00
parent 6d01df35e6
commit b1e2a00b82

View File

@ -12,7 +12,7 @@ def print_msg(msg, print_to="debug"):
elif print_to == "stdout": elif print_to == "stdout":
print(msg) print(msg)
else: else:
raise ValueError(f"Invalid value of the 'output' option: {output}") raise ValueError(f"Invalid value of the 'print_to' option: {print_to}")
def format_msg_project_package_options( def format_msg_project_package_options(