From 11a481fb942e6436f8bb567ae4b8a80027735025 Mon Sep 17 00:00:00 2001 From: Gedare Bloom Date: Thu, 19 Mar 2020 09:33:14 -0600 Subject: execute.py: fix long line --- rtemstoolkit/execute.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rtemstoolkit/execute.py b/rtemstoolkit/execute.py index 35f616c..3a79f50 100755 --- a/rtemstoolkit/execute.py +++ b/rtemstoolkit/execute.py @@ -576,8 +576,10 @@ if __name__ == "__main__": def capture_output(text): print(text, end = '') - cmd_shell_test = 'if "%OS%" == "Windows_NT" (echo It is WinNT) else echo Is is not WinNT' - sh_shell_test = 'x="me"; if [ $x = "me" ]; then echo "It was me"; else "It was him"; fi' + cmd_shell_test = ('if "%OS%" == "Windows_NT" (echo It is WinNT) ' + 'else echo It is not WinNT') + sh_shell_test = ('x="me"; if [ $x = "me" ]; then echo "It was me"; ' + 'else "It was him"; fi') commands = {} commands['windows'] = {} -- cgit v1.2.3