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