Skip to content

Commit 58a9040

Browse files
committed
Typo fix
Fixes #2 Signed-off-by: Pedro Algarvio <[email protected]>
1 parent 71f299a commit 58a9040

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

changelog/2.bugfix.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix typo in keyword argument

src/ptscripts/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self, parser: Parser):
7777
if os.environ.get("CI"):
7878
console_kwargs["force_terminal"] = True
7979
console_kwargs["force_interactive"] = False
80-
self.console = Console(sterr=True, **console_kwargs)
80+
self.console = Console(stderr=True, **console_kwargs)
8181
self.console_stdout = Console(**console_kwargs)
8282

8383
def print(self, *args, **kwargs):

0 commit comments

Comments
 (0)