From 39b8103af750acbfffa1cde8090104a8d0d5ce8f Mon Sep 17 00:00:00 2001 From: Stefan Kombrink Date: Mon, 22 Apr 2019 23:38:49 +0200 Subject: [PATCH] ugly pythonic identation mistake fixed --- config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.py b/config.py index bc2af07..70ef37c 100644 --- a/config.py +++ b/config.py @@ -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: @@ -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