1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: Ananthu C V <weepingclown@debian.org>
Date: Sun, 8 Mar 2026 11:17:36 +0100
Subject: drop usage of deprecated distuils module
Last-Update: 2024-12-05
---
ez_setup.py | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/ez_setup.py b/ez_setup.py
index 5428375..673acde 100755
--- a/ez_setup.py
+++ b/ez_setup.py
@@ -17,8 +17,7 @@ import platform
import textwrap
import contextlib
import warnings
-
-from distutils import log
+import logging as log
try:
from urllib.request import urlopen
|