# HG changeset patch # User Ludovic Chabant # Date 1435466748 25200 # Node ID bdeeee777f85efe193065631bf40f6d1d68d145f # Parent 21e26ed867b60d77b7db7f0150a85b7a1e893f54 internal: Floats are also allowed in configurations, duh. diff -r 21e26ed867b6 -r bdeeee777f85 piecrust/configuration.py --- a/piecrust/configuration.py Sat Jun 27 08:27:35 2015 -0700 +++ b/piecrust/configuration.py Sat Jun 27 21:45:48 2015 -0700 @@ -8,7 +8,7 @@ logger = logging.getLogger(__name__) -default_allowed_types = (dict, list, tuple, int, bool, str) +default_allowed_types = (dict, list, tuple, float, int, bool, str) class ConfigurationError(Exception):