From 149fa15cab206979f245348aa7b82191ee68c5f9 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sun, 22 Nov 2015 21:05:31 +0100 Subject: [PATCH] docs: Fix return value reference Fixes #1332 --- mopidy/ext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mopidy/ext.py b/mopidy/ext.py index 7fd68f96..fe8d0daf 100644 --- a/mopidy/ext.py +++ b/mopidy/ext.py @@ -54,7 +54,7 @@ class Extension(object): def get_config_schema(self): """The extension's config validation schema - :returns: :class:`~mopidy.config.schema.ExtensionConfigSchema` + :returns: :class:`~mopidy.config.schemas.ConfigSchema` """ schema = config_lib.ConfigSchema(self.ext_name) schema['enabled'] = config_lib.Boolean()