Browse Source

Make the formatting of warnings slightly more consistent

Part of tor's 21570.
teor 7 years ago
parent
commit
2ee92311eb
1 changed files with 3 additions and 3 deletions
  1. 3 3
      tools/warnings.sh

+ 3 - 3
tools/warnings.sh

@@ -57,14 +57,14 @@ function show_warnings() {
     fi
     # Give context to the warnings we're about to display
     if [ "$CHUTNEY_WARNINGS_SUMMARY" = true ]; then
-        $ECHO_Q "${GREEN}Summary `basename $1`:${NC}"
+        $ECHO_Q "${GREEN}Summary: `basename $1`${NC}"
     else
-        $ECHO_Q "${GREEN}Node `basename $1`:${NC}"
+        $ECHO_Q "${GREEN}Node: `basename $1`${NC}"
     fi
     if [ "$CHUTNEY_WARNINGS_IGNORE_EXPECTED" = true -a \
         -e "$IGNORE_FILE" ]; then
         PERMANENT_DIR=`readlink -n "$1"`
-        $ECHO_A "${GREEN}(Detail: chutney/tools/warnings.sh $PERMANENT_DIR)${NC}"
+        $ECHO_A "${GREEN}Detail: chutney/tools/warnings.sh $PERMANENT_DIR${NC}"
     fi
     # Display the warnings, after filtering and counting occurrences
     # must be kept in sync with the filter commands above