From 60944ee309f85ca4271374f3722b2f3507abef2b Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Mon, 27 Nov 2023 11:28:39 +0200 Subject: [PATCH] Add link to docs in error message (#10910) * Add link to blog in error message * Link to config file tutorial Co-authored-by: Manuel Kaufmann --------- Co-authored-by: Manuel Kaufmann --- readthedocs/config/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/readthedocs/config/config.py b/readthedocs/config/config.py index 5eafa0e3310..f09356416c8 100644 --- a/readthedocs/config/config.py +++ b/readthedocs/config/config.py @@ -100,7 +100,8 @@ class DefaultConfigFileNotFound(ConfigError): def __init__(self): super().__init__( - "No default configuration file found at repository's root.", + "No default configuration file found at repository's root. " + "See https://docs.readthedocs.io/en/stable/config-file/", CONFIG_FILE_REQUIRED, )