From f1b764761ca43cdf4e54f694e567f0500fe91f15 Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Sat, 22 Apr 2023 09:52:51 +0200 Subject: [PATCH] Fix error in docstring --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8e6c02b8..20f9bcdd 100755 --- a/setup.py +++ b/setup.py @@ -108,7 +108,8 @@ def writeFile(fileName, writeText): def toUpload(srcPath, dstName=None): """Copy a file produced by one of the build functions to the uplaod - directory. The file can optionally be given a new name.""" + directory. The file can optionally be given a new name. + """ uplDir = "dist_upload" if not os.path.isdir(uplDir): os.mkdir(uplDir)