From bc84c30ed9f0343a83e54052494cfaa5bc710677 Mon Sep 17 00:00:00 2001 From: Sylvain Baubeau Date: Fri, 8 Jan 2021 15:25:00 +0100 Subject: [PATCH] Fix base config default when not using vcs (#3030) --- src/molecule/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/molecule/shell.py b/src/molecule/shell.py index f458c734aa..6cc43b3191 100644 --- a/src/molecule/shell.py +++ b/src/molecule/shell.py @@ -89,7 +89,7 @@ def print_version(ctx, param, value): "--base-config", "-c", multiple=True, - default=[LOCAL_CONFIG], + default=[LOCAL_CONFIG] if LOCAL_CONFIG else [], help=( "Path to a base config (can be specified multiple times)." " If provided, Molecule will first load and deep merge the"