changeset 0452654263fe in tryton-tools:default
details: https://hg.tryton.org/tryton-tools?cmd=changeset&node=0452654263fe
description:
Use no-status option instead of cut
diffstat:
reviewbot.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 31d7aa7b5174 -r 0452654263fe reviewbot.py
--- a/reviewbot.py Sat Dec 11 17:56:43 2021 +0100
+++ b/reviewbot.py Sat Dec 11 21:37:33 2021 +0100
@@ -102,7 +102,7 @@
shell=True).decode('utf-8'))
output.append(subprocess.check_output(
'isort -m VERTICAL_GRID -p trytond -c '
- '`hg status --subrepos | cut -d " " -f2 -` || exit 0',
+ '`hg status --subrepos --no-status` || exit 0',
stderr=subprocess.STDOUT,
shell=True).decode('utf-8'))
finally: