From a7a6f7e76ed83d9a23a6b67cc256745beace001a Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Mon, 30 Aug 2021 17:35:23 +0200 Subject: [PATCH] fixing svn add error --- elab_users/users.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/elab_users/users.py b/elab_users/users.py index 1a83c77..737d721 100644 --- a/elab_users/users.py +++ b/elab_users/users.py @@ -71,6 +71,8 @@ class ElabUser: out_file = tmpdir / filename handler.check_call(["cp", str(in_file), str(out_file)]) # add and commit the changes + print(tmpdir) + print(list(tmpdir.iterdir())) handler.check_call( ["svn", "add", str(tmpdir / "*")], shell=True # noqa: S604 )