16 lines
314 B
Text
16 lines
314 B
Text
|
#!/usr/bin/python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# vi:si:et:sw=4:sts=4:ts=4
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
root = os.path.join(os.path.abspath(os.path.dirname(__file__)), '..')
|
||
|
if os.path.exists(os.path.join(root, 'oxgst')):
|
||
|
sys.path.insert(0, root)
|
||
|
|
||
|
from oxposter import poster
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
poster.main()
|
||
|
|