Browse Source

Correctly handle binascii.Error.

Gary van der Merwe 11 years ago
parent
commit
ad2f8e3166
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dulwich/tests/compat/test_pack.py

+ 1 - 1
dulwich/tests/compat/test_pack.py

@@ -59,7 +59,7 @@ class TestPack(PackTests):
             sha = line[:40]
             try:
                 binascii.unhexlify(sha)
-            except TypeError:
+            except (TypeError, binascii.Error):
                 continue  # non-sha line
             pack_shas.add(sha)
         orig_shas = set(o.id for o in origpack.iterobjects())