# HG changeset patch # User Franz Glasner # Date 1624575382 -7200 # Node ID d2751a80d9b71789b99ff11f91ff760f7bff2bb5 # Parent ce2a8f5a2fb285c0030d4e1773c386c8d7b0a66f Docu: fix link to KeyError in the new filter function implementations diff -r ce2a8f5a2fb2 -r d2751a80d9b7 configmix/variables.py --- a/configmix/variables.py Thu Jun 24 22:01:53 2021 +0200 +++ b/configmix/variables.py Fri Jun 25 00:56:22 2021 +0200 @@ -248,8 +248,8 @@ def None_filter_impl(config, v): """Identity. - The `None` filter is just a marker to not throw `KeyError` but return - `None`. + The `None` filter is just a marker to not throw :exc:`KeyError` + but return `None`. """ return v @@ -259,8 +259,8 @@ def Empty_filter_impl(config, v): """Identity. - The `Empty` filter is just a marker to not throw `KeyError` but return - the empty string. + The `Empty` filter is just a marker to not throw :exc:`KeyError` + but return the empty string. """ return v