Selaa lähdekoodia

Fix checksum error message.

Jelmer Vernooij 16 vuotta sitten
vanhempi
commit
514f6627b6
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      dulwich/errors.py

+ 1 - 1
dulwich/errors.py

@@ -25,7 +25,7 @@ class ChecksumMismatch(Exception):
         self.expected = expected
         self.got = got
         self.extra = extra
-        if self.extra is not None:
+        if self.extra is None:
             Exception.__init__(self, 
                 "Checksum mismatch: Expected %s, got %s" % (expected, got))
         else: