diff options
Diffstat (limited to 'sphinx/theming.py')
-rw-r--r-- | sphinx/theming.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sphinx/theming.py b/sphinx/theming.py index 64cd67126..33c4c76be 100644 --- a/sphinx/theming.py +++ b/sphinx/theming.py @@ -133,8 +133,9 @@ class Theme(object): for option, value in iteritems(overrides): if option not in options: - raise ThemeError('unsupported theme option %r given' % option) - options[option] = value + logger.warning('unsupported theme option %r given' % option) + else: + options[option] = value return options |