diff options
author | BonfaceKilz | 2021-10-04 13:49:12 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-10-04 13:49:35 +0300 |
commit | 7c1dd1211f96ca1021debc27a80d1700e70b9c6b (patch) | |
tree | f8886d66b49a22aa4925b203217065d0730d7027 /scripts | |
parent | 8fae92c83d49042da68638319385df02061df44b (diff) | |
download | genenetwork2-7c1dd1211f96ca1021debc27a80d1700e70b9c6b.tar.gz |
scripts: group.py: Modify exit message when displaying updated data
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/authentication/group.py | 4 |
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") |