Untitled
Anonymous
plain_text
02/17/2023 8:08 AM
544 B
18
Indexable
if 'overRide' in adminVariableValue.keys() and adminVariableValue['overRide'] in ('YES' or 'NO'):
overide = adminVariableValue['overRide']
else:
print("overRide flag not set in admin variables...Fetching flag from config file")
if configProperties.has_option("config","overRide"):
overide = configProperties.get("config", "overRide")Editor is loading...