@@ -453,7 +453,7 @@ class Project(object):
453453 search_dirs = []
454454
455455 def __init__ (self , ** kwargs ):
456- self .account = kwargs .get ('account' , 'awslabs ' )
456+ self .account = kwargs .get ('account' , 'aws ' )
457457 self .name = kwargs .get ('name' , self .__class__ .__name__ .lower ().replace ('project' , '' ))
458458 assert self .name != 'project'
459459
@@ -476,6 +476,8 @@ def __init__(self, **kwargs):
476476 for search_dir in self .config .get ('search_dirs' , []):
477477 Project .search_dirs .append (os .path .join (self .path , search_dir ))
478478
479+ print ("in project init, {}" .format (self .config ))
480+
479481 def __repr__ (self ):
480482 return "{}: {}" .format (self .name , self .url )
481483
@@ -493,6 +495,7 @@ def resolve(self, path):
493495 project_vars = replace_variables (self .config .get ("variables" , {}), replacements )
494496 replacements .update (project_vars )
495497 self .config = replace_variables (self .config , replacements )
498+ print ("in resolve, {}" .format (self .config ))
496499
497500 def pre_build (self , env ):
498501 imports = self .get_imports (env .spec )
0 commit comments