Skip to content

Commit

Permalink
fix: minor changes (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
LevZaplatin authored Dec 29, 2021
1 parent 56068b9 commit c59d33a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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')

```

Expand All @@ -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()"')
```

0 comments on commit c59d33a

Please sign in to comment.