From 672353293a16f1fd7c9e561e6d9881e83b7fc39b 2012-06-14 20:12:19 From: MinRK Date: 2012-06-14 20:12:19 Subject: [PATCH] fix format of LazyEvaluate based on *actual* review --- diff --git a/IPython/core/prompts.py b/IPython/core/prompts.py index 0b3d364..84d7987 100644 --- a/IPython/core/prompts.py +++ b/IPython/core/prompts.py @@ -104,7 +104,7 @@ class LazyEvaluate(object): return unicode(self()) def __format__(self, format_spec): - return format(unicode(self()), format_spec) + return format(self(), format_spec) def multiple_replace(dict, text): """ Replace in 'text' all occurences of any key in the given