From 97c1fc9b85d32224485e9ca0ef35f0dd93fc5c71 Mon Sep 17 00:00:00 2001 From: q Date: Mon, 2 Dec 2024 20:03:27 +0200 Subject: [PATCH] bugfix --- flit/flit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flit/flit.py b/flit/flit.py index 80b5085..35a5d4a 100755 --- a/flit/flit.py +++ b/flit/flit.py @@ -222,7 +222,7 @@ def copy_files(cwd, new_name, files): """ target = os.path.abspath(new_name) - for f in opts.files: + for f in files: print(f"Copying: {f}") source = os.path.join(cwd, f) if source.endswith("/"):