diff --git a/extra/shutils/blanks.sh b/extra/shutils/blanks.sh index 43aaee77a..d95d8dad7 100755 --- a/extra/shutils/blanks.sh +++ b/extra/shutils/blanks.sh @@ -4,4 +4,4 @@ # See the file 'doc/COPYING' for copying permission # Removes trailing spaces from blank lines inside project files -find ../../. -type f -iname '*.py' -exec sed -i 's/^[ \t]*$//' {} \; +find . -type f -iname '*.py' -exec sed -i 's/^[ \t]*$//' {} \;