From dfddcddd89c19a2077ca11198e460c2de8d90fb9 Mon Sep 17 00:00:00 2001 From: Mike O'Connor Date: Fri, 13 Mar 2009 11:15:28 -0400 Subject: [PATCH] fix utils.temp_directory Signed-off-by: Mike O'Connor --- daklib/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daklib/utils.py b/daklib/utils.py index 6135a19f..c1be6b90 100755 --- a/daklib/utils.py +++ b/daklib/utils.py @@ -1494,7 +1494,7 @@ def temp_dirname(parent=None, prefix="dak", suffix=""): Returns a pathname to the new directory """ - return tempfile.mkdtemp(suffix, prefix, directory) + return tempfile.mkdtemp(suffix, prefix, parent) ################################################################################ -- 2.39.5