summaryrefslogtreecommitdiff
path: root/gui.py
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2012-09-14 13:25:22 +0200
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2012-09-14 13:25:22 +0200
commitfc36a2c8ecb64dedabda0530ad1d05731693ee3f (patch)
treedd6ecdae4e40d18cf054c8fd7d2b19cf3ed68cf5 /gui.py
parent33503108d2f1fe1825cfc5dc3eadc15adc7e821b (diff)
downloadpylint-fc36a2c8ecb64dedabda0530ad1d05731693ee3f.tar.gz
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
Diffstat (limited to 'gui.py')
-rw-r--r--gui.py18
1 files changed, 17 insertions, 1 deletions
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:])