From: Tomas Gavenciak Date: Sat, 18 Sep 2010 07:40:56 +0000 (+0200) Subject: Minor fix config dumping X-Git-Tag: python-dummy-working~11 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=3174229a8fedb53beefb3b7ff0efae36e34b2b7e;p=moe.git Minor fix config dumping --- diff --git a/t/moe/eval.py b/t/moe/eval.py index 19ad6ba..46dff84 100644 --- a/t/moe/eval.py +++ b/t/moe/eval.py @@ -81,7 +81,7 @@ class Eval: "Dumps config at level DDEBUG (only compiles the dump if main level is low enough)." if self.log.level <= 5: self.log.ddebug('****** Config dump: ******') - self.log.ddebug(self.config.dump('**** ')) + self.log.ddebug('\n'.join(self.config.dump('** '))) self.log.ddebug('**************************') def debug_dump_pipe(self, pipe):