@@ -236,7 +236,7 @@ def load_all_modules(limit=-1, full_details=False):
236236 """
237237 # Search for Modules
238238 from config import nettacker_paths
239- from core .utility import sort_dictonary
239+ from core .utility import sort_dictionary
240240 if full_details :
241241 import yaml
242242 module_names = {}
@@ -260,7 +260,7 @@ def load_all_modules(limit=-1, full_details=False):
260260 if len (module_names ) == limit :
261261 module_names ['...' ] = {}
262262 break
263- module_names = sort_dictonary (module_names )
263+ module_names = sort_dictionary (module_names )
264264 module_names ['all' ] = {}
265265
266266 return module_names
@@ -273,7 +273,7 @@ def load_all_profiles(limit=-1):
273273 Returns:
274274 an array of all profile names
275275 """
276- from core .utility import sort_dictonary
276+ from core .utility import sort_dictionary
277277 all_modules_with_details = load_all_modules (limit = limit , full_details = True )
278278 profiles = {}
279279 if '...' in all_modules_with_details :
@@ -287,11 +287,11 @@ def load_all_profiles(limit=-1):
287287 else :
288288 profiles [tag ].append (key )
289289 if len (profiles ) == limit :
290- profiles = sort_dictonary (profiles )
290+ profiles = sort_dictionary (profiles )
291291 profiles ['...' ] = []
292292 profiles ['all' ] = []
293293 return profiles
294- profiles = sort_dictonary (profiles )
294+ profiles = sort_dictionary (profiles )
295295 profiles ['all' ] = []
296296 return profiles
297297
0 commit comments