Przeglądaj źródła

Avoid deprecated Exception.message.

Jelmer Vernooij 11 lat temu
rodzic
commit
e8bc8b176a
1 zmienionych plików z 1 dodań i 1 usunięć
  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):