From 639c4a826230d87389856bbf6f657169fd4e48e5 Mon Sep 17 00:00:00 2001 From: Peter Dahlberg Date: Mon, 20 Jun 2016 02:41:31 +0200 Subject: [PATCH] nothing to split --- pelican_deploy/deploy.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pelican_deploy/deploy.py b/pelican_deploy/deploy.py index 882b4d0..50dd153 100644 --- a/pelican_deploy/deploy.py +++ b/pelican_deploy/deploy.py @@ -82,8 +82,7 @@ class DeploymentRunner: def clean_working_dir_blocking(self, abort_running=True): def clean_fn(): - rmpaths = map(shlex.split, [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)