diff --git a/reformat.sh b/reformat.sh
index acfcc2a5756ff81cba76d1c80c8f3fd444e58102..ee1d8289d806a6506a3319f28c1f8512252e0161 100755
--- a/reformat.sh
+++ b/reformat.sh
@@ -21,12 +21,11 @@ function format_header {
   do_commit $1
 }
 
-PDEFILES=`find $DIR -name '*.pde' -print`
 CPPFILES=`find $DIR -name '*.cpp' -print`
 CFILES=`find $DIR -name '*.c' -print`
 HFILES=`find $DIR -name '*.h' -print`
 
-for f in $PDEFILES $CPPFILES $CFILES; do
+for f in $CPPFILES $CFILES; do
   format_cpp $f
 done