Skip to content

Commit 90916b4

Browse files
committed
Fix error printing
1 parent d678350 commit 90916b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manager/manager/manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ def find_docker_console():
627627
console_path = find_docker_console()
628628
for i in console_path:
629629
with open(i, "w") as console:
630-
console.write(errors + "\n\n")
630+
console.write(error + "\n\n")
631631

632632
if failed_linter:
633633
raise Exception(errors)

0 commit comments

Comments
 (0)