summaryrefslogtreecommitdiff
path: root/git/exc.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/exc.py')
-rw-r--r--git/exc.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/git/exc.py b/git/exc.py
index 76d3d486..fac7cde5 100644
--- a/git/exc.py
+++ b/git/exc.py
@@ -22,7 +22,7 @@ class GitCommandError(Exception):
self.stdout = stdout
self.status = status
self.command = command
-
+
def __str__(self):
ret = "'%s' returned exit status %i: %s" % \
(' '.join(str(i) for i in self.command), self.status, self.stderr)
@@ -52,8 +52,8 @@ class CheckoutError( Exception ):
def __str__(self):
return Exception.__str__(self) + ":%s" % self.failed_files
-
-
+
+
class CacheError(Exception):
"""Base for all errors related to the git index, which is called cache internally"""