From: Ao Liu, Ph.D., CSM Date: Sat, 30 Aug 2025 00:36:23 +0000 (-0500) Subject: doc: fix formatting of SQL command in documentation X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5bfdfb87eeefba9b08971f1e6da496075c8287ce;p=thirdparty%2Fpsycopg.git doc: fix formatting of SQL command in documentation --- diff --git a/docs/basic/from_pg2.rst b/docs/basic/from_pg2.rst index 53ac661a4..b1fa2e0a4 100644 --- a/docs/basic/from_pg2.rst +++ b/docs/basic/from_pg2.rst @@ -144,7 +144,7 @@ can compose a multiple query on the client side and run them all in the same >>> from psycopg import sql >>> conn.execute( - ... sql.SQL("INSERT INTO foo VALUES ({}); INSERT INTO foo values ({})" + ... sql.SQL("INSERT INTO foo VALUES ({}); INSERT INTO foo values ({})") ... .format(10, 20)) or a :ref:`client-side binding cursor `::