diff options
Diffstat (limited to 'doc/docs/quickstart.rst')
-rw-r--r-- | doc/docs/quickstart.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/docs/quickstart.rst b/doc/docs/quickstart.rst index dba7698a..d994f74e 100644 --- a/doc/docs/quickstart.rst +++ b/doc/docs/quickstart.rst @@ -39,7 +39,7 @@ Here is a small example for highlighting Python code: from pygments.formatters import HtmlFormatter code = 'print "Hello World"' - print highlight(code, PythonLexer(), HtmlFormatter()) + print(highlight(code, PythonLexer(), HtmlFormatter())) which prints something like this: |