Merge branch 'settings'
[gc-dialer] / src / dialcentral.py
index 58cd175..86a0db1 100755 (executable)
@@ -1,13 +1,22 @@
-#!/usr/bin/python
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+"""
+Copyright (C) 2007 Christoph Würstle
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License version 2 as
+published by the Free Software Foundation.
+"""
 
-import sys
 
+import sys
 
-sys.path.insert(0,"/usr/lib/dialcentral/")
 
+sys.path.append("/opt/dialcentral/lib")
 
-import gc_dialer
 
+import dialcentral_qt
 
-gc_dialer.run_dialpad()
 
+if __name__ == "__main__":
+       dialcentral_qt.run()