fix PERSONAS PERSONAS_DIR typo

This commit is contained in:
Nick Sweeting
2024-03-26 14:19:25 -07:00
committed by GitHub
parent 6981837a0b
commit a4453b6f87

View File

@@ -1029,10 +1029,10 @@ def get_data_locations(config: ConfigDict) -> ConfigValue:
'enabled': True,
'is_valid': config['LOGS_DIR'].exists(),
},
'PERSONAS': {
'path': config['PERSONAS'].resolve(),
'PERSONAS_DIR': {
'path': config['PERSONAS_DIR'].resolve(),
'enabled': True,
'is_valid': config['PERSONAS'].exists(),
'is_valid': config['PERSONAS_DIR'].exists(),
},
'ARCHIVE_DIR': {
'path': config['ARCHIVE_DIR'].resolve(),