1
0
Fork 0
mirror of synced 2024-04-29 18:14:38 +12:00

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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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(),