summaryrefslogtreecommitdiffstats
path: root/ptpython/completer.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-07-17 07:40:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-07-17 07:40:58 +0000
commit302975348b0dbd4f0ddbb699df76ee05ffbefaaf (patch)
tree761e94c321db07dec57816b4ffdd36a13d67662d /ptpython/completer.py
parentReleasing debian version 3.0.16-2. (diff)
downloadptpython-302975348b0dbd4f0ddbb699df76ee05ffbefaaf.tar.xz
ptpython-302975348b0dbd4f0ddbb699df76ee05ffbefaaf.zip
Merging upstream version 3.0.19.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ptpython/completer.py')
-rw-r--r--ptpython/completer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ptpython/completer.py b/ptpython/completer.py
index 9f7e10b..285398c 100644
--- a/ptpython/completer.py
+++ b/ptpython/completer.py
@@ -468,7 +468,7 @@ class DictionaryCompleter(Completer):
"""
def abbr_meta(text: str) -> str:
- " Abbreviate meta text, make sure it fits on one line. "
+ "Abbreviate meta text, make sure it fits on one line."
# Take first line, if multiple lines.
if len(text) > 20:
text = text[:20] + "..."
@@ -621,7 +621,7 @@ class HidePrivateCompleter(Completer):
class ReprFailedError(Exception):
- " Raised when the repr() call in `DictionaryCompleter` fails. "
+ "Raised when the repr() call in `DictionaryCompleter` fails."
try: