From fa74a98a2cb369584c8cab2feb329b91e9550fde Mon Sep 17 00:00:00 2001 From: Alfred Wingate Date: Thu, 5 Oct 2023 07:18:23 +0300 Subject: setup.py: Remove last distutils import Signed-off-by: Alfred Wingate --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 525126e..682254f 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,3 @@ -from distutils.file_util import copy_file - from setuptools import setup from setuptools import Command from setuptools.command.build import build as _build @@ -155,7 +153,7 @@ class install_messages(Command): self.mkpath(out_dir) out_file = os.path.join(out_dir, '%s.mo' % self.distribution.get_name()) - copy_file(c, out_file) + self.copy_file(c, out_file) ## Class modified to add manpages command -- cgit v1.2.3-65-gdbad