diff options
-rwxr-xr-x | utils/NightlyTest.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index c8fb302865..db61914cdd 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -151,7 +151,7 @@ sub AddRecord { sub AddPreTag { # Add pre tags around nonempty list, or convert to "none" $_ = shift; - if (length) { return "<ul><pre>$_</pre></ul>"; } else { "<b>none</b><br>"; } + if (length) { return "<ul><tt>$_</tt></ul>"; } else { "<b>none</b><br>"; } } sub ChangeDir { # directory, logical name |