From 8d2385540bae81b82cfa8c1dacdc4c50d3a059f6 Mon Sep 17 00:00:00 2001 From: Rolf Krahl Date: Mon, 19 Aug 2024 13:31:11 +0200 Subject: [PATCH] Typo in comment in example script --- doc/examples/init-icat.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/examples/init-icat.py b/doc/examples/init-icat.py index ef0017ac..a632f1a7 100644 --- a/doc/examples/init-icat.py +++ b/doc/examples/init-icat.py @@ -126,8 +126,8 @@ def getUser(client, attrs): client.createRules("CRUD", uotables, uogroup) # Setup permissions for the data ingester. They need read permission -# on Investigation and Shift and create and create permission on -# Dataset, Datafile, and the respective Parameter. +# on Investigation and Shift and create permission on Dataset, +# Datafile, and the respective Parameter. ingest = client.createUser("simple/dataingest", fullName="Data Ingester") ingestgroup = client.createGroup("ingest", [ ingest ]) client.createRules("R", [ "Investigation", "Shift" ], ingestgroup)