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

Commit c7bffe9

Browse files
author
vshepard
committed
Fix node.py _gettempdir, _raise_bugcheck
1 parent 95e6ad0 commit c7bffe9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testgres/node.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1938,7 +1938,7 @@ def make_simple(
19381938

19391939
return node
19401940

1941-
def _gettempdir():
1941+
def _gettempdir(self):
19421942
v = tempfile.gettempdir()
19431943

19441944
#
@@ -1956,7 +1956,7 @@ def _gettempdir():
19561956
# OK
19571957
return v
19581958

1959-
def _raise_bugcheck(msg):
1959+
def _raise_bugcheck(self, msg):
19601960
assert type(msg) == str # noqa: E721
19611961
assert msg != ""
19621962
raise Exception("[BUG CHECK] " + msg)

0 commit comments

Comments
 (0)