From fb0810bf9edff591341972d20edebbc141196f8a Mon Sep 17 00:00:00 2001 From: Thomas Adamcik Date: Mon, 15 Apr 2013 17:43:14 +0200 Subject: [PATCH] config: Specify we want bytes for default configs --- mopidy/ext.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mopidy/ext.py b/mopidy/ext.py index 13df48c2..9cea1bd5 100644 --- a/mopidy/ext.py +++ b/mopidy/ext.py @@ -34,9 +34,9 @@ class Extension(object): """ def get_default_config(self): - """The extension's default config as a string + """The extension's default config as a bytestring - :returns: string + :returns: bytes """ raise NotImplementedError( 'Add at least a config section with "enabled = true"')