Whitespace does not not weigh anything - remove - sed -i 's/ *$//g' *py */*py

Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
This commit is contained in:
Nico Schottelius 2011-10-18 13:32:36 +02:00
commit 7bb81e2f18
9 changed files with 15 additions and 15 deletions

View file

@ -71,7 +71,7 @@ class Local(object):
self.object_path = os.path.join(self.out_path, "object")
self.log = logging.getLogger(self.target_host)
def create_directories(self):
self.mkdir(self.out_path)
self.mkdir(self.global_explorer_out_path)
@ -116,7 +116,7 @@ class Local(object):
self.log.debug("Local run script: %s", command)
if env:
self.log.debug("Local run script env: %s", env)
try:
if return_output:
return subprocess.check_output(command, env=env).decode()