Fix server start shebang: hardcoding /usr/bin/python bypasses virtualenv (or other), /usr/bin/env python doesn't

bzr revid: xmo@tinyerp.com-20091127105005-g4mwjrp7a1m38zj0
This commit is contained in:
Xavier Morel 2009-11-27 11:50:05 +01:00
parent 200e8bbe27
commit 0d3d0a23e1
1 changed files with 2 additions and 3 deletions

View File

@ -1,5 +1,5 @@
#!/usr/bin/python
# -*- encoding: utf-8 -*-
#!/usr/bin/env python
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
@ -223,4 +223,3 @@ while True:
time.sleep(1)
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: