diff options
author | Florian Apolloner <florian@apolloner.eu> | 2008-06-07 16:23:42 +0200 |
---|---|---|
committer | Florian Apolloner <florian@apolloner.eu> | 2008-06-07 16:23:42 +0200 |
commit | ef9395f5ffe75f4e43d80cd1fa7b34c8a4db66fe (patch) | |
tree | 8cc2dd0502a838489925e68861f0542183c177c9 /lib/git/cmd.py | |
parent | 24effa4861d6d1e8cffe848ae63fa2ed40be03f6 (diff) | |
parent | 9aa93b5890acb152c5824a8f75c221cf1addfd1b (diff) | |
download | gitpython-ef9395f5ffe75f4e43d80cd1fa7b34c8a4db66fe.tar.gz |
Merge branch 'master' of git://gitorious.org/git-python/mainline
Diffstat (limited to 'lib/git/cmd.py')
-rw-r--r-- | lib/git/cmd.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/git/cmd.py b/lib/git/cmd.py index 85d72353..afa13e2c 100644 --- a/lib/git/cmd.py +++ b/lib/git/cmd.py @@ -51,11 +51,11 @@ class Git(MethodMissingMixin): return self.git_dir def execute(self, command, - istream = None, - with_status = False, - with_stderr = False, - with_exceptions = False, - with_raw_output = False, + istream=None, + with_status=False, + with_stderr=False, + with_exceptions=False, + with_raw_output=False, ): """ Handles executing the command on the shell and consumes and returns @@ -96,10 +96,10 @@ class Git(MethodMissingMixin): # Start the process proc = subprocess.Popen(command, - cwd = self.git_dir, - stdin = istream, - stderr = stderr, - stdout = subprocess.PIPE + cwd=self.git_dir, + stdin=istream, + stderr=stderr, + stdout=subprocess.PIPE ) # Wait for the process to return |