From fc36a2c8ecb64dedabda0530ad1d05731693ee3f Mon Sep 17 00:00:00 2001 From: Sylvain Th?nault Date: Fri, 14 Sep 2012 13:25:22 +0200 Subject: create a console_scripts entry point to be used by easy_install, buildout and pip. Closes #103949 uniformize run interface and update licensing on the way --- gui.py | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'gui.py') diff --git a/gui.py b/gui.py index 2d8e81e..f590397 100644 --- a/gui.py +++ b/gui.py @@ -1,3 +1,18 @@ +# Copyright (c) 2003-2012 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.fr +# +# This program is free software; you can 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 of the License, or (at your option) any later +# version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details +# +# You should have received a copy of the GNU General Public License along with +# this program; if not, write to the Free Software Foundation, Inc., +# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. """Tkinker gui for pylint""" import os @@ -444,9 +459,10 @@ def Run(args): """launch pylint gui from args""" if args: print 'USAGE: pylint-gui\n launch a simple pylint gui using Tk' - return + sys.exit(1) gui = LintGui() gui.mainloop() + sys.exit(0) if __name__ == '__main__': Run(sys.argv[1:]) -- cgit v1.2.1