* Match it back to aws env

This commit is contained in:
maor.rayzin 2018-11-28 15:02:17 +02:00
parent 8397af4c6b
commit 0fe7a9c6e1
1 changed files with 1 additions and 1 deletions

View File

@ -754,7 +754,7 @@ class ReportService:
def get_active_exporters(): def get_active_exporters():
# This function should be in another module in charge of building a list of active exporters # This function should be in another module in charge of building a list of active exporters
exporters_list = [] exporters_list = []
if str(load_env_from_file()) == 'standard': if str(load_env_from_file()) == AWS:
exporters_list.append(AWSExporter) exporters_list.append(AWSExporter)
return exporters_list return exporters_list