From c59d33a5497bd8ae1f76bc19af2e235b6de7c8e0 Mon Sep 17 00:00:00 2001 From: Lev Zaplatin Date: Wed, 29 Dec 2021 22:49:26 +0300 Subject: [PATCH] fix: minor changes (#6) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d74de06..c9deba9 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ functions are provided for convenience: >>> print(q.fetchall()) ... [('PostgreSQL 13.4 on x86_64-pc-linux-gnu, compiled by gcc (GCC) 8.3.1 20190311 (Red Hat 8.3.1-3), 64-bit',)] ->>> pg_ctl('-D testdatabase stop) +>>> pg_ctl('-D testdatabase stop') ``` @@ -61,6 +61,6 @@ can be used in a pytest: ```py3 >>> from postgresql import tmp_postgres >>> def test_foo(tmp_postgres): -... postgresql.psql(f'-h {tmp_postgres} -c "select version()") +... postgresql.psql(f'-h {tmp_postgres} -c "select version()"') ```