summaryrefslogtreecommitdiff
path: root/lib/git/cmd.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-08 17:29:52 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-08 17:29:52 +0200
commit451561c252323e74696dbe0be36601c95a75a8c3 (patch)
treee415e5645ea651ef4848983e9c5055840236287a /lib/git/cmd.py
parent2454ae89983a4496a445ce347d7a41c0bb0ea7ae (diff)
downloadgitpython-451561c252323e74696dbe0be36601c95a75a8c3.tar.gz
Added docs for the error module
Diffstat (limited to 'lib/git/cmd.py')
-rw-r--r--lib/git/cmd.py5
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.