Untitled

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