From 240e08f8fc956f7d58a73d1eceb3ecdcdaa1d097 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 30 Oct 2014 12:40:07 -0400 Subject: [PATCH] fixes --- pipes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pipes.py b/pipes.py index dd29819..4ee4340 100644 --- a/pipes.py +++ b/pipes.py @@ -7,7 +7,8 @@ class Process(object): def __init__(self, command): self.command = command self.environ = {} - self.cwd = + self.cwd = None + def set_command(self, command): # process popen chain, etc