oxtools/bin/oxposter

16 lines
323 B
Plaintext
Raw Permalink Normal View History

2009-01-18 08:39:14 +00:00
#!/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)
2010-09-17 15:43:01 +00:00
from oximage import oxdb_poster
2009-01-18 08:39:14 +00:00
if __name__ == "__main__":
2010-09-17 15:43:01 +00:00
oxdb_poster.main()
2009-01-18 08:39:14 +00:00