Skip to content
Snippets Groups Projects
Commit 8f3cbcc5 authored by Arthur Le Bars's avatar Arthur Le Bars
Browse files

get_data docstring indentation

parent 813735d8
No related branches found
No related tags found
1 merge request!1Release 1.0
...@@ -54,7 +54,7 @@ class GetData(speciesData.SpeciesData): ...@@ -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 Generate the directory tree for an organism
......
...@@ -309,6 +309,7 @@ def deploy_stacks(input_list, main_dir, deploy_traefik): ...@@ -309,6 +309,7 @@ def deploy_stacks(input_list, main_dir, deploy_traefik):
# Deploy individual species stacks # Deploy individual species stacks
for sp in to_deploy_species_li: for sp in to_deploy_species_li:
os.chdir(sp) 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])], 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=".") stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=".")
logging.info("Deployed %s stack" % sp) logging.info("Deployed %s stack" % sp)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment