diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-08 17:29:52 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-08 17:29:52 +0200 |
commit | 451561c252323e74696dbe0be36601c95a75a8c3 (patch) | |
tree | e415e5645ea651ef4848983e9c5055840236287a /lib/git/cmd.py | |
parent | 2454ae89983a4496a445ce347d7a41c0bb0ea7ae (diff) | |
download | gitpython-451561c252323e74696dbe0be36601c95a75a8c3.tar.gz |
Added docs for the error module
Diffstat (limited to 'lib/git/cmd.py')
-rw-r--r-- | lib/git/cmd.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/git/cmd.py b/lib/git/cmd.py index 0a8ff6a2..796928b3 100644 --- a/lib/git/cmd.py +++ b/lib/git/cmd.py @@ -102,7 +102,10 @@ class Git(object): str(output) # extended_output = False (Default) tuple(int(status), str(stdout), str(stderr)) # extended_output = True - + + Raise + GitCommandError + NOTE If you add additional keyword arguments to the signature of this method, you must update the execute_kwargs tuple housed in this module. |