Parcourir la source

Avoid deprecated Exception.message.

Jelmer Vernooij il y a 11 ans
Parent
commit
e8bc8b176a
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      dulwich/objects.py

+ 1 - 1
dulwich/objects.py

@@ -91,7 +91,7 @@ def hex_to_sha(hex):
     except TypeError as exc:
         if not isinstance(hex, str):
             raise
-        raise ValueError(exc.message)
+        raise ValueError(exc.args[0])
 
 
 def hex_to_filename(path, hex):