From 608fcc17e07602336081bc3c49c1add052de0d57 Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Tue, 15 Feb 2011 22:07:57 +0000 Subject: [PATCH] fixed a but --- pelican/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pelican/__init__.py b/pelican/__init__.py index 05b8c216..1ef7fd2f 100755 --- a/pelican/__init__.py +++ b/pelican/__init__.py @@ -61,7 +61,7 @@ class Pelican(object): p.generate_context() # erase the directory if it is not the source - if os.path.realpath(self.path).startswith(self.output_path) and not keep: + if os.path.realpath(self.path).startswith(self.output_path) and not self.keep: clean_output_dir(self.output_path) writer = self.get_writer()