Fix Log Message

This commit is contained in:
Cort Buffington 2018-02-13 19:02:41 -06:00
parent 06c611005e
commit bb0e2c5020
1 changed files with 1 additions and 1 deletions

View File

@ -313,7 +313,7 @@ if __name__ == '__main__':
for system in CONFIG['SYSTEMS']:
for acl_type in ACL:
if system not in ACL[acl_type]:
logger.warning('No SID ACL for system %s - initializing \'PERMIT:ALL\'', system)
logger.warning('No %s ACL for system %s - initializing \'PERMIT:ALL\'', acl_type, system)
ACL[acl_type].update({system: acl_build('PERMIT:ALL')})