Wednesday, December 31, 2014
1 change · master
Code cleanup and technical improvements
This update removes editor-specific notes and extra blank lines from Python files across the Accounting area. It does not change how the software works, but keeps the codebase cleaner and easier to maintain.
Original PR description
See discussions at https://github.com/odoo/odoo/pull/4174
PR generated with
``` bash
grep -i -r -l -e '# \?vim:' --include="*.py" | xargs sed -i -e '/# \?vim:/d'
find . -name "*.py" -print | xargs sed -i ':1;/^\n*$/{$d;N;b1}'
```