aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2012-10-30 17:05:10 +0100
committerBjörn Gustavsson <[email protected]>2012-10-31 14:31:15 +0100
commitbc252da80bdae41fa8aeee813da3365a651b801f (patch)
treedb3f8fe6dcc19a72f1f52ba698da48d5c09e5c5e
parent0a42a8be1604a29bfefd62e54a2e8453e237fd73 (diff)
downloadotp-bc252da80bdae41fa8aeee813da3365a651b801f.tar.gz
otp-bc252da80bdae41fa8aeee813da3365a651b801f.tar.bz2
otp-bc252da80bdae41fa8aeee813da3365a651b801f.zip
Fix writing of configuration information to ct_master_log.html
Because of a forgotten "Fd", configuration information intended for ct_master_log.html ended up being written to standard output.
-rw-r--r--lib/common_test/src/ct_master_logs.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common_test/src/ct_master_logs.erl b/lib/common_test/src/ct_master_logs.erl
index d76288feef..84f175c0a9 100644
--- a/lib/common_test/src/ct_master_logs.erl
+++ b/lib/common_test/src/ct_master_logs.erl
@@ -204,7 +204,7 @@ open_ct_master_log(Dir) ->
{ok,Fd} = file:open(FullName,[write]),
io:put_chars(Fd,header("Common Test Master Log", {[],[1,2],[]})),
%% maybe add config info here later
- io:put_chars(config_table([])),
+ io:put_chars(Fd,config_table([])),
io:put_chars(Fd,
"<style>\n"
"div.ct_internal { background:lightgrey; color:black }\n"