basichttp server (забыл git add .)
[chanspy.git] / gui.shit / chans.py
blob5075ec2953f3811c545c93b83b620c5de66f4a45
1 #!/usr/bin/env python
3 ###############################################
4 # chans.py - chanspy gui client
5 # Copyright (C) 2008 anonymous
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 ###############################################
21 import sys
23 import gui
24 import client
26 try:
27 client.get_chans()
28 except:
29 sys.stderr.write('Server is not running.\n')
30 sys.exit(1)
32 main_gui = gui.GUI('glades/main.glade')
33 main_gui.main()