Skip to content

Commit

Permalink
remove reference to deprecated Spreadsheet::WriteExcel::Big module
Browse files Browse the repository at this point in the history
  • Loading branch information
carlbailey committed Oct 18, 2009
1 parent 4e1e312 commit bb83b42
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions code/UI_Tag/backup_database.coretag
Expand Up @@ -28,17 +28,11 @@ sub {

my $xls;

eval {
require Spreadsheet::WriteExcel::Big;
import Spreadsheet::WriteExcel::Big;
$xls = Spreadsheet::WriteExcel::Big->new("$backup_dir/DBDOWNLOAD.xls");
} if $opt ->{xls};

eval {
require Spreadsheet::WriteExcel;
import Spreadsheet::WriteExcel;
$xls = Spreadsheet::WriteExcel->new("$backup_dir/DBDOWNLOAD.xls");
} if $opt ->{xls} and ! $xls;
} if $opt ->{xls};

undef $opt->{xls} unless $xls;

Expand Down

0 comments on commit bb83b42

Please sign in to comment.