Fixed an issue where cloud deployment failed for Azure on Windows. Fixes #7498

pull/86/head
Yogesh Mahajan 2022-06-22 19:47:48 +05:30 committed by Akshay Joshi
parent 95f63f6af8
commit ceb29547e2
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
import argparse
import os
import sys
def load_providers():
""" Loads all the providers """
@ -19,7 +19,7 @@ def load_providers():
path = os.path.dirname(os.path.realpath(__file__))
modules = os.listdir(path + '/providers')
sys.path.append(path)
for filename in modules:
filename = path + '/providers/' + filename