diff --git a/gga_get_data.py b/gga_get_data.py
index 3b9259145632bc30463a9cb7d952d890834068b9..ae98f88c2907f4e64587f679bd03f811d3a8ec19 100644
--- a/gga_get_data.py
+++ b/gga_get_data.py
@@ -54,7 +54,7 @@ class GetData(speciesData.SpeciesData):
 
 
 
-        def make_directory_tree(self):
+    def make_directory_tree(self):
         """
         Generate the directory tree for an organism
 
diff --git a/gga_init.py b/gga_init.py
index 205b74c4abe0548905080e131efcb78de4dda751..2ade1c7a5264a6f750f4041433c71764b14e16a2 100644
--- a/gga_init.py
+++ b/gga_init.py
@@ -309,6 +309,7 @@ def deploy_stacks(input_list, main_dir, deploy_traefik):
     # Deploy individual species stacks
     for sp in to_deploy_species_li:
         os.chdir(sp)
+        logging.info("Deploying %s stack" % sp)
         subprocess.call(["docker", "stack", "deploy", "-c", "./docker-compose.yml", "{0}_{1}".format(sp.split("_")[0], sp.split("_")[1])],
                                            stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=".")
         logging.info("Deployed %s stack" % sp)