Explorar el Código

Avoid deprecated Exception.message.

Jelmer Vernooij hace 11 años
padre
commit
e8bc8b176a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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):