diff options
| author | Rod Whitby <rod@whitby.id.au> | 2006-02-23 03:11:17 +0000 |
|---|---|---|
| committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-02-23 03:11:17 +0000 |
| commit | 1cb8d519d298d8159d3702ea62e5653733bee64d (patch) | |
| tree | eb103e417f85c3d0556151c29af86a52b975a248 /classes | |
| parent | 298cc4009aadfc4c2a9e640260935f27c814b177 (diff) | |
| parent | 2dd47dc6ea6c6bdf86d85aeea548debba6b4a405 (diff) | |
merge of 0746766217f478c6eebca71d9f28cc011b491563
and b8f599588572f86c26bb5cdfa1f5e89c83967e8c
Diffstat (limited to 'classes')
| -rw-r--r-- | classes/tinderclient.bbclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/classes/tinderclient.bbclass b/classes/tinderclient.bbclass index 67cd95842f..1c6a6c497f 100644 --- a/classes/tinderclient.bbclass +++ b/classes/tinderclient.bbclass @@ -221,13 +221,13 @@ def tinder_tinder_start(d): time_start = tinder_time_string() config = tinder_print_info(d) - env = tinder_print_env() + #env = tinder_print_env() time_end = tinder_time_string() output = [] output.append( "---> TINDERBOX PRINTING CONFIGURATION %(time_start)s" ) output.append( config ) - output.append( env ) + #output.append( env ) output.append( "<--- TINDERBOX FINISHED PRINTING CONFIGURATION %(time_end)s" ) output.append( "" ) return "\n".join(output) % vars() @@ -273,7 +273,7 @@ def tinder_do_tinder_report(event): if len(log_file) != 0: to_file = data.getVar('TINDER_LOG', event.data, True) - log += "\n".join(open(log_file[0], 'r').readlines()) + log += "".join(open(log_file[0], 'r').readlines()) # set the right 'HEADER'/Summary for the TinderBox if name == "TaskStarted": |
