Skip to content

Commit

Permalink
ugly pythonic identation mistake fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Kombrink committed Apr 22, 2019
1 parent be5498f commit 39b8103
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config.py
Expand Up @@ -65,7 +65,7 @@ def SETUP(dolmaname, mode=None):
mode=engine
print("Success using "+mode)
return
raise Exception("None of the available container engines is usable")
raise Exception("None of the available container engines is usable")
if mode not in enginePreference:
raise Exception("Unsupported container engine: " + mode)
else:
Expand All @@ -88,7 +88,7 @@ def INIT(force):
os.mkdir(INST_PATH, 0755)

printitb("Storing dolmades python runscripts...")
cmd = "tar --exclude-vcs -czpf "+DOLMADES_PATH+"/dolmades-bin.tgz -C "+SELF_PATH+" dolmades udocker cook goglizer config.py"
cmd = "tar --exclude-vcs -czpf "+DOLMADES_PATH+"/dolmades-bin.tgz -C "+SELF_PATH+" dolmades udocker cook goglizer config.py prettyprint.py box"
subprocess.call(cmd, shell=True, close_fds=True)

force_runtime_rebuild=False
Expand Down

0 comments on commit 39b8103

Please sign in to comment.