We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db96041 commit 709a3faCopy full SHA for 709a3fa
1 file changed
omnipkg/core.py
@@ -1577,7 +1577,7 @@ def _first_time_setup(self, interactive=True) -> Dict:
1577
final_config['multiversion_base'] = bubble_path
1578
python_path = input(_('Python executable path [{}]: ').format(defaults['python_executable'])).strip() or defaults['python_executable']
1579
final_config['python_executable'] = python_path
1580
- edis_choice = input(_('⚡️ Attempt to use Redis for high-performance caching? (y/n) [y]: ')).strip().lower()
+ redis_choice = input(_('⚡️ Attempt to use Redis for high-performance caching? (y/n) [y]: ')).strip().lower()
1581
final_config['redis_enabled'] = redis_choice != 'n'
1582
if final_config['redis_enabled']:
1583
# Only ask for host and port if Redis is enabled
0 commit comments