pidgin/pidgin

remove the finalize method as it's not necessary and clean up a deprecation warning
#!/bin/bash
for f in `ls *.svg`
do
echo "Processing $f file..."
inkscape --vacuum-defs $f
done