fix 'Expression form of "eval"'
This commit is contained in:
parent
90e8251523
commit
7215e419df
1 changed files with 2 additions and 2 deletions
|
@ -4038,7 +4038,7 @@ sub dump_result {
|
||||||
debugprint "HTML REPORT: $opt{'reportfile'}";
|
debugprint "HTML REPORT: $opt{'reportfile'}";
|
||||||
|
|
||||||
if ( $opt{'reportfile'} ne 0 ) {
|
if ( $opt{'reportfile'} ne 0 ) {
|
||||||
eval "{ use Text::Template }";
|
eval {require Text::Template};
|
||||||
if ($@) {
|
if ($@) {
|
||||||
badprint "Text::Template Module is needed.";
|
badprint "Text::Template Module is needed.";
|
||||||
exit 1;
|
exit 1;
|
||||||
|
@ -4062,7 +4062,7 @@ sub dump_result {
|
||||||
close $fh;
|
close $fh;
|
||||||
}
|
}
|
||||||
if ( $opt{'json'} ne 0 ) {
|
if ( $opt{'json'} ne 0 ) {
|
||||||
eval "{ use JSON }";
|
eval {require JSON};
|
||||||
if ($@) {
|
if ($@) {
|
||||||
print "JSON Module is needed.";
|
print "JSON Module is needed.";
|
||||||
exit 1;
|
exit 1;
|
||||||
|
|
Loading…
Reference in a new issue