diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-06-10 14:10:35 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-06-10 14:10:35 +0200 |
commit | 22d2e4a0bfd4c2b83e718ead7f198234e3064929 (patch) | |
tree | 81d57bbb9d79f7ee0905ce21eadf01c6376341dc /git/remote.py | |
parent | e15b57bf0bb40ccc6ecbebc5b008f7e96b436f19 (diff) | |
parent | 3e79604c8bdfc367f10a4a522c9bf548bdb3ab9a (diff) | |
download | gitpython-22d2e4a0bfd4c2b83e718ead7f198234e3064929.tar.gz |
Merge branch 'master' of https://github.com/victorgp/GitPython into victorgp-master
Diffstat (limited to 'git/remote.py')
-rw-r--r-- | git/remote.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/remote.py b/git/remote.py index 4baa2838..485e1445 100644 --- a/git/remote.py +++ b/git/remote.py @@ -555,7 +555,7 @@ class Remote(LazyMixin, Iterable): line = line.decode(defenc) line = line.rstrip() for pline in progress_handler(line): - if line.startswith('fatal:'): + if line.startswith('fatal:') or line.startswith('error:'): raise GitCommandError(("Error when fetching: %s" % line,), 2) # END handle special messages for cmd in cmds: |