Skip to content

Commit aa1b00e

Browse files
committed
First EOL for STDOUT
1 parent c007811 commit aa1b00e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

codespell_lib/_codespell.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1103,7 +1103,8 @@ def _script_main() -> int:
11031103
return main(*sys.argv[1:])
11041104
except KeyboardInterrupt:
11051105
# User has typed CTRL+C
1106-
sys.stderr.write(f"\nCancelling '{sys.argv[0]}'\n")
1106+
sys.stdout.write("\n")
1107+
sys.stderr.write(f"Cancelling '{sys.argv[0]}'\n")
11071108
return 130
11081109

11091110

0 commit comments

Comments
 (0)