Initial revision
[gnucomo.git] / src / coconf / coconf.pyw
1 #   Copyright (C) 2002, Peter Roozemaal.
2 #
3 # GnuCoMo/CoConf is free software; you may redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2, or (at your option)
6 # any later version.  See the file COPYING.
7
8 import sys
9 import cotk
10 from textbase import txt
11
12 _id = "$Id: coconf.pyw,v 1.1 2002-11-19 19:21:18 arjen Exp $"
13
14 if len(sys.argv) > 2:
15     print stderr, txt("usage", "usage: coconf [<file>]")
16 main = cotk.Main()
17 if len(sys.argv) == 2:
18     main.load(sys.argv[1])
19 main.mainloop()