From cb25cb5fb342d49a7b749cf8aecc355949e89db1 Mon Sep 17 00:00:00 2001 From: Matthieu Coudron Date: Wed, 17 Dec 2014 18:18:08 +0100 Subject: [PATCH] Fix error generated by sphinx-build complaining of no end for the list --- i3pystatus/core/settings.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/i3pystatus/core/settings.py b/i3pystatus/core/settings.py index 8773c66..eae708c 100644 --- a/i3pystatus/core/settings.py +++ b/i3pystatus/core/settings.py @@ -24,8 +24,9 @@ class SettingsBase: """settings should be tuple containing two types of elements: * bare strings, which must be valid Python identifiers. - * two-tuples, the first element being a identifier (as above) - and the second a docstring for the particular setting""" + * two-tuples, the first element being a identifier (as above) and the second a docstring for the particular setting + + """ required = tuple() """required can list settings which are required"""