mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-18 01:52:00 +02:00
8 lines
180 B
Python
Executable file
8 lines
180 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
# set server timezone in UTC before time module imported
|
|
__import__('os').environ['TZ'] = 'UTC'
|
|
import odoo
|
|
|
|
if __name__ == "__main__":
|
|
odoo.cli.main()
|