Browse Source

tools/find_authors - minor correction

We should not report that only thanks.in has been checked, as authors has too.
Spenser Reinhardt 11 năm trước cách đây
mục cha
commit
b94a5fb8b2
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      tools/find_authors

+ 1 - 1
tools/find_authors

@@ -32,7 +32,7 @@ for name in $(git log | grep "Author:" | sed 's/Author: //g' | sed 's/ <.*>//g'
 	fi
 done
 
-echo "Authors not found in thanks.in:"
+echo "Authors not found:"
 for name in ${authors[@]}; do
 	echo "${name}" | sed 's/_/ /g'
 done