From b270c1bac4b6ef5cf30f4f0289cc290eb69520d4 Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Fri, 6 May 2011 19:29:01 +0200 Subject: [PATCH] stupidly replace rmtree by a pass, since we dont want to rmtree the output dir --- pelican/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pelican/utils.py b/pelican/utils.py index c113efdd..f9f17489 100644 --- a/pelican/utils.py +++ b/pelican/utils.py @@ -62,7 +62,7 @@ def clean_output_dir(path): # remove all the existing content from the output folder try: - shutil.rmtree(path) + pass # WEEEEE dont kill except Exception: pass