diff --git a/apps/crc_proposal_end.py b/apps/crc_proposal_end.py index 2971e1a..b4447d7 100755 --- a/apps/crc_proposal_end.py +++ b/apps/crc_proposal_end.py @@ -1,6 +1,6 @@ """Print the end date for an account's proposal. -This application is designed to interface with the CRC banking application +This application is designed to interface with the CRCD banking application and will not work without a running bank installation. """ @@ -15,7 +15,7 @@ class CrcProposalEnd(BaseParser): - """Display the end date for an account's current CRC proposal.""" + """Display the end date for an account's current CRCD proposal.""" def __init__(self) -> None: """Define arguments for the command line interface""" @@ -34,7 +34,7 @@ def app_logic(self, args: Namespace) -> None: Slurm.check_slurm_account_exists(args.account) keystone_session = KeystoneClient(url=KEYSTONE_URL) - keystone_session.login(username=os.environ["USER"], password=getpass("Please enter your CRC login password:\n")) + keystone_session.login(username=os.environ["USER"], password=getpass("Please enter your CRCD login password:\n")) team_id = get_team_id(keystone_session, args.account) alloc_requests = get_active_requests(keystone_session, team_id) diff --git a/apps/crc_sus.py b/apps/crc_sus.py index 2b95223..46394bd 100755 --- a/apps/crc_sus.py +++ b/apps/crc_sus.py @@ -59,7 +59,7 @@ def app_logic(self, args: Namespace) -> None: Slurm.check_slurm_account_exists(account_name=args.account) keystone_session = KeystoneClient(url=KEYSTONE_URL) - keystone_session.login(username=os.environ["USER"], password=getpass("Please enter your CRC login password:\n")) + keystone_session.login(username=os.environ["USER"], password=getpass("Please enter your CRCD login password:\n")) group_id = get_team_id(keystone_session, args.account) alloc_requests = get_active_requests(keystone_session, group_id)