From 2d35081a1f7979c9fdcdbe1cc0296176430319db Mon Sep 17 00:00:00 2001 From: Peter Dahlberg Date: Mon, 20 Jun 2016 02:42:26 +0200 Subject: [PATCH] fiy typo --- pelican_deploy/deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pelican_deploy/deploy.py b/pelican_deploy/deploy.py index 50dd153..b503a51 100644 --- a/pelican_deploy/deploy.py +++ b/pelican_deploy/deploy.py @@ -82,7 +82,7 @@ class DeploymentRunner: def clean_working_dir_blocking(self, abort_running=True): def clean_fn(): - rmpaths = [str(self.build_repo_path), str(self._output_dir)]) + rmpaths = [str(self.build_repo_path), str(self._output_dir)] for p in rmpaths: check_call(["rm", "-rf"] + p)