From edc957bbcc01c62573b9f2ea9e9f36a1aae1e405 Mon Sep 17 00:00:00 2001 From: bill Date: Fri, 3 Feb 2012 19:46:11 -0500 Subject: [PATCH] switching to copy_tree instead of copytree --- make.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.py b/make.py index 5b80b04..9deae53 100755 --- a/make.py +++ b/make.py @@ -58,7 +58,7 @@ def install(): sanitized_name = re.sub("[^\w]", "", config["name"]) output_dir = join(config["path"], sanitized_name) print "installing to %s" % output_dir - copytree("build", output_dir) + copy_tree("build", output_dir) def pull(): #copy the project from mapbox to osm-bright