-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removing the escape sequence from the console output! #140
Conversation
The output coming from the console Terminal consists of Bracketed Paste escape sequence! I have updated the code in a way that it will check the status output and see if the output has this sequence, it will remove this from the output and then use only integer o/p of status command! Before applying the patch status output was: ^[[?2004l0 After applying the patch status output is: 0 Signed-off-by: Anushree Mathur <[email protected]>
Before applying the patch
After applying the patch
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you, LGTM. Btw there is no need to open new PR per version, a force push is generally preferred.
Thank you for merging this PR @ldoktor! I agree with this but I had to close the previous one as 2 commits got added by mistake in that PR while doing force push! |
The output coming from the console Terminal consists of Bracketed Paste escape sequence! I have updated the code in a way that it will check the status output and see if the output has this sequence, it will remove this from the output and then use only integer o/p of status command!
Before applying the patch status output was:
^[[?2004l0
After applying the patch status output is:
0
Signed-off-by: Anushree Mathur [email protected]