diff options
author | David Aguilar <davvid@gmail.com> | 2008-06-01 12:58:32 -0700 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2008-06-01 21:57:45 -0400 |
commit | 277be842bf30848e7292a931169bd4c8ff726dee (patch) | |
tree | 13b91096dc4acc6aac70ce5fea8d0157976e32f4 /lib/git/cmd.py | |
parent | b919010b0459b2540fb609c5d1aad0b8dc0fab01 (diff) | |
download | gitpython-277be842bf30848e7292a931169bd4c8ff726dee.tar.gz |
style: follow PEP 8 in git/cmd.py
Keyword args shouldn't use spaces around the equals sign
per PEP 8.
Signed-off-by: David Aguilar <davvid@gmail.com>
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 ac449e91..8c996070 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 |