From 61bb7b0e44aea0630dcdc35e9bcb05c55e4be135 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Sat, 27 Jul 2013 16:07:43 +0200 Subject: [PATCH] Fixed string formatting. Part 2. --- configurations/values.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configurations/values.py b/configurations/values.py index 4adad37..6d05afe 100644 --- a/configurations/values.py +++ b/configurations/values.py @@ -198,7 +198,7 @@ class SetValue(ListValue): class DictValue(Value): - message = 'Cannot interpret dict value {!s}' + message = 'Cannot interpret dict value {0!r}' def __init__(self, *args, **kwargs): super(DictValue, self).__init__(*args, **kwargs)