From: Tomas Krizek Date: Wed, 15 Apr 2020 08:14:51 +0000 (+0200) Subject: doc: use python as default domain X-Git-Tag: v5.1.0~12^2 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=13ac2252576ac6c5450daec7e7f8def03b310c8d;p=thirdparty%2Fknot-resolver.git doc: use python as default domain Our lua functions don't conform to C function declarations, which generates warnings when using Sphinx 3.0.0+. --- diff --git a/doc/conf.py b/doc/conf.py index 3e49df5c8..fcc1c99c7 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -41,7 +41,7 @@ exclude_patterns = ['_build'] # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' highlight_language = 'c' -primary_domain = 'c' +primary_domain = 'py' # -- Options for HTML output ---------------------------------------------------