From 7a0c40a99951b3093b20e442d1eaa5960c8b1ab1 Mon Sep 17 00:00:00 2001 From: Djebran Lezzoum Date: Fri, 14 Sep 2018 15:59:50 +0300 Subject: [PATCH] Fix Sphinx deprecated option (#537) --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 14742834..6bcf94a0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -42,7 +42,7 @@ master_doc = 'index' exclude_patterns = ['_build'] nitpicky = True -autodoc_default_flags = ['members'] +autodoc_default_options = {'members': None} # Format-Specific Options -----------------------------------------------------