More Gonvert fixes
[gonvert] / src / REPLACEME.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 """
5 Copyright (C) 2007 Christoph Würstle
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License version 2 as
8 published by the Free Software Foundation.
9 """
10
11
12 import os
13 import sys
14 import logging
15
16
17 _moduleLogger = logging.getLogger(__name__)
18 sys.path.append("/opt/REPLACEME/lib")
19
20
21 import constants
22 import REPLACEME_gtk
23
24
25 if __name__ == "__main__":
26         try:
27                 os.makedirs(constants._data_path_)
28         except OSError, e:
29                 if e.errno != 17:
30                         raise
31
32         try:
33                 os.makedirs(constants._cache_path_)
34         except OSError, e:
35                 if e.errno != 17:
36                         raise
37
38         logFormat = '(%(asctime)s) %(levelname)-5s %(threadName)s.%(name)s: %(message)s'
39         logging.basicConfig(level=logging.DEBUG, filename=constants._user_logpath_, format=logFormat)
40         _moduleLogger.info("%s %s-%s" % (constants.__app_name__, constants.__version__, constants.__build__))
41         _moduleLogger.info("OS: %s" % (os.uname()[0], ))
42         _moduleLogger.info("Kernel: %s (%s) for %s" % os.uname()[2:])
43         _moduleLogger.info("Hostname: %s" % os.uname()[1])
44
45         REPLACEME_gtk.run()