From cde1429e139cb570a8002f72f047dddca12f54d8 Mon Sep 17 00:00:00 2001 From: Sam Lang Date: Mon, 15 Apr 2013 16:16:34 -0500 Subject: [PATCH] misc: Fix bug in calling function remote_mktemp() Changed the name of the function to get a remote temporary filename, need to update all the locations where it gets called. Signed-off-by: Sam Lang --- teuthology/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/misc.py b/teuthology/misc.py index 51077695f0..12351aebf5 100644 --- a/teuthology/misc.py +++ b/teuthology/misc.py @@ -391,7 +391,7 @@ def remove_lines_from_file(remote, path, line_is_valid_test, string_to_test_for) # get a temp file path on the remote host to write to, # we don't want to blow away the remote file and then have the # network drop out - temp_file_path = get_remote_tempnam(remote) + temp_file_path = remote_mktemp(remote) # write out the data to a temp file write_file(remote, temp_file_path, out_data) -- 2.39.5