From fe87f9eb3fc6039fb7e2c87f768d98efa8e6aff6 Mon Sep 17 00:00:00 2001 From: mortenbp Date: Mon, 9 Apr 2012 18:23:29 +0300 Subject: [PATCH] Removed redundant 'if'-statement. --- lib/bup/git.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/bup/git.py b/lib/bup/git.py index 5cb282922..1d922aac8 100644 --- a/lib/bup/git.py +++ b/lib/bup/git.py @@ -220,8 +220,6 @@ def _decode_packobj(buf): c = ord(buf[i]) sz |= (c & 0x7f) << shift shift += 7 - if not (c & 0x80): - break return (type, zlib.decompress(buf[i+1:]))