diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-20 22:13:45 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-20 22:13:45 +0100 |
commit | bb0f3d78d6980a1d43f05cb17a8da57a196a34f3 (patch) | |
tree | 775ad298112ea19674e1e05a5ab21669f999ace7 /git/util.py | |
parent | e4921139819c7949abaad6cc5679232a0fbb0632 (diff) | |
download | gitpython-bb0f3d78d6980a1d43f05cb17a8da57a196a34f3.tar.gz |
Fixed flake8 and a minor test regression.
The latter happened as now BadName is thrown, instead of BadObject.
Changes.rst was marked accordingly
Diffstat (limited to 'git/util.py')
-rw-r--r-- | git/util.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/git/util.py b/git/util.py index 8cab0b99..06fefcc3 100644 --- a/git/util.py +++ b/git/util.py @@ -251,9 +251,9 @@ class RemoteProgress(object): message = message[:-len(done_token)] # END end message handling - self.update(op_code, - cur_count and float(cur_count), - max_count and float(max_count), + self.update(op_code, + cur_count and float(cur_count), + max_count and float(max_count), message) # END for each sub line return failed_lines |