credativ team mailing list archive
-
credativ team
-
Mailing list archive
-
Message #00122
[Bug 524279] Re: Files missing VIM mode lines
This has now been fixed after merging Lionel's merge proposals, however this is still not seen technically as a bug, and I'd prefer people not to spend time on this in the future.
Thanks!
** Changed in: openobject-server
Status: Won't Fix => Fix Released
--
You received this bug notification because you are a member of OpenERP
Framework Experts, which is subscribed to OpenERP Server.
https://bugs.launchpad.net/bugs/524279
Title:
Files missing VIM mode lines
Status in OpenERP Server:
Fix Released
Bug description:
The convention for the moment is to end each python file with a vim mode line. There are offending files in the current codebase, which you can find out with GNU grep:
grep -R --files-without-match "^# vim:" . |grep ".py$"
and fix with bash and GNU grep:
for i in $(grep -R --files-without-match "^# vim:" . |grep ".py$" ); do echo -e "\n# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:" >>$i ; done
Lionel.
To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-server/+bug/524279/+subscriptions