From 9544a6ce3dc4005510f05804e76fb1d8a321f988 Mon Sep 17 00:00:00 2001 From: Min RK Date: Wed, 22 Sep 2021 08:50:45 +0200 Subject: [PATCH] close parentheses --- deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.py b/deploy.py index 842b6f9eb..0481bc788 100755 --- a/deploy.py +++ b/deploy.py @@ -178,7 +178,7 @@ def deploy(release, name=None): # common config files config_files = sorted(glob.glob(os.path.join("config", "common", "*.yaml"))) - config_files.extend(sorted(glob.glob(os.path.join("secrets", "config", "common", "*.yaml"))) + config_files.extend(sorted(glob.glob(os.path.join("secrets", "config", "common", "*.yaml")))) # release-specific config files for config_dir in ("config", "secrets/config"): config_files.append(os.path.join(config_dir, release + ".yaml"))