From 9c7c7c474f6493a011ed0245833c0edb4b11bbc8 Mon Sep 17 00:00:00 2001 From: Florian Apolloner Date: Tue, 15 Jan 2019 18:30:42 +0100 Subject: [PATCH] Fixed config code example if the path has spaces. Change-Id: I3a9dd03c9957cde335a8d37b88bbfe257492012a --- ara/server/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ara/server/settings.py b/ara/server/settings.py index c281a09..5abbed7 100644 --- a/ara/server/settings.py +++ b/ara/server/settings.py @@ -199,7 +199,7 @@ if not os.path.exists(DEFAULT_CONFIG) and "ARA_SETTINGS" not in os.environ: # This is a default configuration template generated by ARA. # To use a configuration file such as this one, you need to export the # ARA_SETTINGS configuration variable like so: - # $ export ARA_SETTINGS={DEFAULT_CONFIG} + # $ export ARA_SETTINGS="{DEFAULT_CONFIG}" """ logger.info(f"Writing default config to {DEFAULT_CONFIG}")