aboutsummaryrefslogtreecommitdiff
path: root/scripts/authentication/group.py
diff options
context:
space:
mode:
authorBonfaceKilz2021-10-04 13:49:12 +0300
committerBonfaceKilz2021-10-04 13:49:35 +0300
commit7c1dd1211f96ca1021debc27a80d1700e70b9c6b (patch)
treef8886d66b49a22aa4925b203217065d0730d7027 /scripts/authentication/group.py
parent8fae92c83d49042da68638319385df02061df44b (diff)
downloadgenenetwork2-7c1dd1211f96ca1021debc27a80d1700e70b9c6b.tar.gz
scripts: group.py: Modify exit message when displaying updated data
Diffstat (limited to 'scripts/authentication/group.py')
-rw-r--r--scripts/authentication/group.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/authentication/group.py b/scripts/authentication/group.py
index 02f782b3..cc0b037e 100644
--- a/scripts/authentication/group.py
+++ b/scripts/authentication/group.py
@@ -125,6 +125,6 @@ if __name__ == "__main__":
args.group_name)) # type: ignore
if created_p:
exit(f"\nSuccessfully created the group: '{args.group_name}'\n"
- f"Data: {groups}\n")
+ f"`HGETALL groups {args.group_name}`: {groups}\n")
exit("\nNo new group was created.\n"
- f"Updated Data: {groups}\n")
+ f"`HGETALL groups {args.group_name}`: {groups}\n")