From 54596ffbbb3626288dfafd51baf596dfc983763b Mon Sep 17 00:00:00 2001 From: Joseph Chatelain Date: Thu, 28 Sep 2023 08:23:05 -0700 Subject: [PATCH] edit setup prompt --- tom_setup/management/commands/tom_setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tom_setup/management/commands/tom_setup.py b/tom_setup/management/commands/tom_setup.py index 715e2787e..2b7ccb687 100644 --- a/tom_setup/management/commands/tom_setup.py +++ b/tom_setup/management/commands/tom_setup.py @@ -88,7 +88,7 @@ def get_target_type(self): '2': 'NON_SIDEREAL' } options_str = ['{}) {}'.format(key, target_type) for key, target_type in allowed_types.items()] - prompt = 'Which target type will your project use? {} '.format(self.style.WARNING(", ".join(options_str))) + prompt = 'Which target type should be used as default? {} '.format(self.style.WARNING(", ".join(options_str))) target_type = input(prompt) try: self.context['TARGET_TYPE'] = allowed_types[target_type]