From 5e34a9cf21e3da73d4242a391a8d4e3bab59cae4 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Mon, 9 Sep 2013 23:18:33 +0200 Subject: Make Repair() idempotent and lowercase --- slic3r.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'slic3r.pl') diff --git a/slic3r.pl b/slic3r.pl index 8818c9151..6d485e52b 100755 --- a/slic3r.pl +++ b/slic3r.pl @@ -103,7 +103,7 @@ if (@ARGV) { # slicing from command line $output_file =~ s/\.(stl)$/_fixed.obj/i; my $tmesh = Slic3r::TriangleMesh::XS->new(); $tmesh->ReadSTLFile($file); - $tmesh->Repair; + $tmesh->repair; $tmesh->WriteOBJFile($output_file); } exit; -- cgit v1.2.3