[rtems-tools commit] execute.py: fix long line
Gedare Bloom
gedare at rtems.org
Thu Mar 19 22:30:36 UTC 2020
Module: rtems-tools
Branch: master
Commit: 11a481fb942e6436f8bb567ae4b8a80027735025
Changeset: http://git.rtems.org/rtems-tools/commit/?id=11a481fb942e6436f8bb567ae4b8a80027735025
Author: Gedare Bloom <gedare at rtems.org>
Date: Thu Mar 19 09:33:14 2020 -0600
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'] = {}
More information about the vc
mailing list