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 Odoo, with a visible sample concentrated in Accounting. It does not change product behavior, but keeps the codebase cleaner and easier for developers 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}'
```