Skip to content
Snippets Groups Projects
Commit 007b68d4 authored by Jedrzej Rybicki's avatar Jedrzej Rybicki
Browse files

no break after missing md field. apparently not so crucial

parent 1fcd99be
Branches
No related tags found
No related merge requests found
Pipeline #92951 passed
...@@ -114,8 +114,8 @@ def upload_example(): ...@@ -114,8 +114,8 @@ def upload_example():
cid, required = community cid, required = community
missing = [r for r in required if r not in template] missing = [r for r in required if r not in template]
if any(missing): if any(missing):
print(f"Community {cid} required field {missing} are missing") print(f"Community {cid} required field {missing} are missing. This could pose some problems")
return
r = create_draft_record(server=server, token=token, record=template) r = create_draft_record(server=server, token=token, record=template)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment