summaryrefslogtreecommitdiff
path: root/gui.py
diff options
context:
space:
mode:
authorSylvain Thénault <sylvain.thenault@logilab.fr>2009-11-23 15:15:26 +0100
committerSylvain Thénault <sylvain.thenault@logilab.fr>2009-11-23 15:15:26 +0100
commit8746b95b65267dfa758174cd2de61719f7fb4697 (patch)
tree490da9d4b55bc43841ad96b78abb7eb5f40e980a /gui.py
parent414e7a121c56301ea38978014ecf7a398e91530f (diff)
downloadpylint-git-8746b95b65267dfa758174cd2de61719f7fb4697.tar.gz
include Dotan Barak spell fixes patch
Diffstat (limited to 'gui.py')
-rw-r--r--gui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui.py b/gui.py
index 3c5012045..05d7b4b47 100644
--- a/gui.py
+++ b/gui.py
@@ -44,7 +44,7 @@ class LintGui:
self.txtModule.focus_set()
def mainloop(self):
- """lauch the mainloop of the application"""
+ """launch the mainloop of the application"""
self.root.mainloop()
def quit(self, _=None):
@@ -52,7 +52,7 @@ class LintGui:
self.root.quit()
def run_lint(self, _=None):
- """lauches pylint"""
+ """launches pylint"""
colors = {'W:':'red1', 'E:': 'red4',
'W:': 'red3', '**': 'navy'}