Skip to content

Commit

Permalink
Add new behavior to \n
Browse files Browse the repository at this point in the history
  • Loading branch information
jsbautista committed Aug 27, 2024
1 parent b492920 commit 6044edc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qtconsole/ansi_code_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def split_string(self, string):
self.actions = []
elif g0 == '\n' or g0 == '\r\n':
self.actions.append(NewLineAction('newline'))
yield g0
yield None
self.actions = []
else:
params = [ param for param in groups[1].split(';') if param ]
Expand Down

0 comments on commit 6044edc

Please sign in to comment.