summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean Abou Samra <jean@abou-samra.fr>2023-04-12 18:26:00 +0200
committerJean Abou Samra <jean@abou-samra.fr>2023-04-12 18:26:00 +0200
commit96a0cdf200ab8a36dc5f6f748f3b9d01c05cb91b (patch)
tree35dbed091d4bd813b5f73a7a3164c22a18417d63
parent569eea6ee85ec4d679bb38a890c167b58ee727dd (diff)
downloadpygments-git-96a0cdf200ab8a36dc5f6f748f3b9d01c05cb91b.tar.gz
PythonTracebackLexer: minor tweak in docstring
-rw-r--r--pygments/lexers/python.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/python.py b/pygments/lexers/python.py
index 5d8087b2..6c89e6b5 100644
--- a/pygments/lexers/python.py
+++ b/pygments/lexers/python.py
@@ -643,7 +643,7 @@ class PythonConsoleLexer(Lexer):
.. sourcecode:: pycon
>>> a = 'foo'
- >>> print a
+ >>> print(a)
foo
>>> 1 / 0
Traceback (most recent call last):