From 20a244c50c45077a8014237822b7d705ffb715e5 Mon Sep 17 00:00:00 2001 From: AJ Ashton Date: Mon, 6 Feb 2012 12:23:07 -0500 Subject: [PATCH] Adding default value of nothing to copy_tree() ignores --- lib/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils.py b/lib/utils.py index a75ac20..5781c34 100644 --- a/lib/utils.py +++ b/lib/utils.py @@ -2,7 +2,7 @@ from distutils.file_util import copy_file from distutils.dir_util import mkpath -def copy_tree(src, dst, ignores): +def copy_tree(src, dst, ignores=()): """Copy an entire directory tree 'src' to a new location 'dst'. Both 'src' and 'dst' must be directory names. If 'src' is not a