From bb0f3d78d6980a1d43f05cb17a8da57a196a34f3 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Tue, 20 Jan 2015 22:13:45 +0100 Subject: Fixed flake8 and a minor test regression. The latter happened as now BadName is thrown, instead of BadObject. Changes.rst was marked accordingly --- git/util.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'git/util.py') 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 -- cgit v1.2.1