Limiting the size of the log
[gc-dialer] / src / dialcentral.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 sys
13
14
15 sys.path.append("/opt/dialcentral/lib")
16
17
18 import dialcentral_qt
19
20
21 if __name__ == "__main__":
22         dialcentral_qt.run()