Преглед на файлове

Avoid deprecated Exception.message.

Jelmer Vernooij преди 11 години
родител
ревизия
e8bc8b176a
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  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):