File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,8 @@ def __init__(self,
56
56
try :
57
57
xlog_method = XLogMethod (xlog_method )
58
58
except ValueError :
59
- raise BackupException ('Invalid xlog_method "{}"' .format (xlog_method ))
59
+ raise BackupException (
60
+ 'Invalid xlog_method "{}"' .format (xlog_method ))
60
61
61
62
# Set default arguments
62
63
username = username or default_username ()
Original file line number Diff line number Diff line change 17
17
18
18
from .exceptions import QueryException
19
19
20
-
21
20
# export these exceptions
22
21
InternalError = pglib .InternalError
23
22
ProgrammingError = pglib .ProgrammingError
Original file line number Diff line number Diff line change 14
14
from .config import testgres_config
15
15
from .exceptions import ExecUtilException
16
16
17
-
18
17
# rows returned by PG_CONFIG
19
18
_pg_config_data = {}
20
19
You can’t perform that action at this time.
0 commit comments