From 165c5c2ae6e79f680c1d42fbdc7b94d25f4c066d Mon Sep 17 00:00:00 2001 From: lkugler <lukas.kugler@gmail.com> Date: Sun, 19 Feb 2023 18:38:23 +0100 Subject: [PATCH] fix --- dartwrf/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dartwrf/utils.py b/dartwrf/utils.py index 429baaa..726c49b 100755 --- a/dartwrf/utils.py +++ b/dartwrf/utils.py @@ -72,6 +72,7 @@ class ClusterConfig(object): try: shutil.copytree(self.scriptsdir, self.scripts_rundir) + print('scripts have been copied to', self.archivedir) except FileExistsError: pass except: @@ -80,7 +81,6 @@ class ClusterConfig(object): # copy(os.path.basename(__file__), self.scripts_rundir+'/') # except Exception as e: # warnings.warn(str(e)) - print('scripts have been copied to', self.archivedir) def shell(args): print(args) -- GitLab