diff options
author | Claudiu Popa <cpopa@cloudbasesolutions.com> | 2015-03-02 01:54:42 +0200 |
---|---|---|
committer | Claudiu Popa <cpopa@cloudbasesolutions.com> | 2015-03-02 01:54:42 +0200 |
commit | 22089a1493535c55e0255ff6b324cb757166e2dd (patch) | |
tree | 05119ac113a7f03904e0464f593d8fc11b31957a /pylint/checkers/python3.py | |
parent | df5ac91fd7c365231c850353f83e5abe6f0969d3 (diff) | |
download | pylint-22089a1493535c55e0255ff6b324cb757166e2dd.tar.gz |
Fix a couple of doc warnings, use string continuation.
Diffstat (limited to 'pylint/checkers/python3.py')
-rw-r--r-- | pylint/checkers/python3.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pylint/checkers/python3.py b/pylint/checkers/python3.py index cf5e888..837cbef 100644 --- a/pylint/checkers/python3.py +++ b/pylint/checkers/python3.py @@ -218,13 +218,13 @@ class Python3Checker(checkers.BaseChecker): 'W1618': ('import missing `from __future__ import absolute_import`', 'no-absolute-import', 'Used when an import is not accompanied by ' - '`from __future__ import absolute_import`' - ' (default behaviour in Python 3)', + '``from __future__ import absolute_import`` ' + '(default behaviour in Python 3)', {'maxversion': (3, 0)}), 'W1619': ('division w/o __future__ statement', 'old-division', 'Used for non-floor division w/o a float literal or ' - '``from __future__ import division``' + '``from __future__ import division`` ' '(Python 3 returns a float for int division unconditionally)', {'maxversion': (3, 0)}), 'W1620': ('Calling a dict.iter*() method', |