summaryrefslogtreecommitdiff
path: root/pylint/checkers/format.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/checkers/format.py')
-rw-r--r--pylint/checkers/format.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/checkers/format.py b/pylint/checkers/format.py
index 54e571296..0cee7b90b 100644
--- a/pylint/checkers/format.py
+++ b/pylint/checkers/format.py
@@ -47,7 +47,7 @@
"""Python code format's checker.
-By default try to follow Guido's style guide :
+By default, try to follow Guido's style guide :
https://www.python.org/doc/essays/styleguide/
@@ -594,7 +594,7 @@ class FormatChecker(BaseTokenChecker):
prev_sibl = node.previous_sibling()
if prev_sibl is not None:
prev_line = prev_sibl.fromlineno
- # The line on which a finally: occurs in a try/finally
+ # The line on which a 'finally': occurs in a 'try/finally'
# is not directly represented in the AST. We infer it
# by taking the last line of the body and adding 1, which
# should be the line of finally: