Skip to content

Commit 36c88c3

Browse files
authored
fix arguments for shutil
1 parent 4f157a0 commit 36c88c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

puncover_html.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ def local_html():
200200
if os.path.exists(static_dir_out):
201201
shutil.rmtree(static_dir_out)
202202
# Copy html static dir (css,js,etc) to output
203-
shutil.copytree(static_dir_out, static_dir_in)
203+
shutil.copytree(static_dir_in, static_dir_out)
204204
index = requests.get(url_base)
205205
index_html_path = dir_out.joinpath("index.html")
206206
index_file = open(index_html_path, "w+")

0 commit comments

Comments
 (0)