[PATCH] execute.py: fix long line

Gedare Bloom gedare at rtems.org
Thu Mar 19 15:35:21 UTC 2020


---
 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'] = {}
-- 
2.17.1



More information about the devel mailing list