15 |
import sys |
import sys |
16 |
import getopt |
import getopt |
17 |
|
|
18 |
from application import ThubanApplication |
import application |
19 |
import Thuban.version |
import Thuban.version |
20 |
|
|
21 |
|
|
28 |
"""Instantiate the application object and run the application""" |
"""Instantiate the application object and run the application""" |
29 |
|
|
30 |
if verify_versions(): |
if verify_versions(): |
31 |
app = ThubanApplication(0) |
app = application.ThubanApplication(0) |
32 |
opts, args = getopt.getopt(sys.argv[1:], '', |
opts, args = getopt.getopt(sys.argv[1:], '', |
33 |
['enable-attribute-editing']) |
['enable-attribute-editing']) |
34 |
for optchar, value in opts: |
for optchar, value in opts: |