From b4fd8090984d7d5b3215f9c5481120127e8d047a Mon Sep 17 00:00:00 2001 From: Marvin Friedrich Date: Mon, 18 Dec 2023 14:34:29 +0100 Subject: [PATCH] Fix typo in rpmbuild.py Just a simple typo fix that was introduced in 6a86965 --- opi/rpmbuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opi/rpmbuild.py b/opi/rpmbuild.py index 9c50d04..872d67d 100644 --- a/opi/rpmbuild.py +++ b/opi/rpmbuild.py @@ -17,7 +17,7 @@ def copy(src, dst): link_target = os.readlink(src) os.symlink(link_target, dst) elif os.path.isfile(src): - shitil.copy2(src, dst) + shutil.copy2(src, dst) else: shutil.copytree(src, dst, copy_function=os.link, symlinks=True, ignore_dangling_symlinks=False)