Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 45588e1

Browse files
committed
pg_ctl path fixed
1 parent 7d132d3 commit 45588e1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Now we are ready to start:
5252
node.start()
5353
```
5454

55-
After this you are able to run queries over the cluster. There is three functions to do that:
55+
After this you are able to run queries over the cluster. There are three functions to do that:
5656

5757
* `node.psql(database, query)` - runs query via `psql` command and returns tuple (error code, stdout, stderr)
5858
* `node.safe_psql(database, query)` - the same as `psql()` except that it returns only `stdout`. If error occures during the execution then it will throw an exception;

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
setup(
33
name = 'testgres',
44
packages = ['testgres'],
5-
version = '0.1.4',
5+
version = '0.1.5',
66
description = 'Testing utility for postgresql and it''s extensions',
77
author = 'Ildar Musin',
88
author_email = 'zildermann@gmail.com',

testgres/testgres.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def pg_ctl(self, command, params):
190190
functions"""
191191
pg_ctl = self.get_bin_path("pg_ctl")
192192

193-
arguments = ["pg_ctl"]
193+
arguments = [pg_ctl]
194194
for key, value in params.iteritems():
195195
arguments.append(key)
196196
if value:

0 commit comments

Comments
 (0)