Browse Source

fixing svn add error

pull/1/head
Holger Frey 3 years ago
parent
commit
a7a6f7e76e
  1. 2
      elab_users/users.py

2
elab_users/users.py

@ -71,6 +71,8 @@ class ElabUser:
out_file = tmpdir / filename out_file = tmpdir / filename
handler.check_call(["cp", str(in_file), str(out_file)]) handler.check_call(["cp", str(in_file), str(out_file)])
# add and commit the changes # add and commit the changes
print(tmpdir)
print(list(tmpdir.iterdir()))
handler.check_call( handler.check_call(
["svn", "add", str(tmpdir / "*")], shell=True # noqa: S604 ["svn", "add", str(tmpdir / "*")], shell=True # noqa: S604
) )

Loading…
Cancel
Save