summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2019-05-25 09:40:05 +0200
committerAndi Albrecht <albrecht.andi@gmail.com>2019-05-25 09:40:05 +0200
commit9cd81393ae8814d46e11b8b658fe70c3664b7606 (patch)
tree225e269b74441481cf78918f388d12441dbe6d78 /setup.py
parentab8e2b3b901f69562b11790f966be40f500e3040 (diff)
downloadsqlparse-9cd81393ae8814d46e11b8b658fe70c3664b7606.tar.gz
Replace print statment by print function in documentation.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 345d0ce..a6e3532 100644
--- a/setup.py
+++ b/setup.py
@@ -44,7 +44,7 @@ Splitting SQL statements::
Formatting statements::
>>> sql = 'select * from foo where id in (select id from bar);'
- >>> print sqlparse.format(sql, reindent=True, keyword_case='upper')
+ >>> print(sqlparse.format(sql, reindent=True, keyword_case='upper'))
SELECT *
FROM foo
WHERE id IN