Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorAlessandro Ranellucci <aar@cpan.org>2013-05-13 22:14:33 +0400
committerAlessandro Ranellucci <aar@cpan.org>2013-05-13 22:14:33 +0400
commitbaa1a8c736e71c5c426437a8050108e88985c4dc (patch)
treee113c69f9e7f1e3c12d366c7b4345f56d8169801 /utils
parentece6dd8a0b4246c933a4d268e03b86c8d2288999 (diff)
Move Slic3r::Test::GCodeReader to Slic3r::GCode::Reader
Diffstat (limited to 'utils')
-rw-r--r--utils/gcode_sectioncut.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/gcode_sectioncut.pl b/utils/gcode_sectioncut.pl
index 39d94112b..971d49c3b 100644
--- a/utils/gcode_sectioncut.pl
+++ b/utils/gcode_sectioncut.pl
@@ -41,7 +41,7 @@ my %opt = (
# read paths
my %paths = (); # z => [ path, path ... ]
- Slic3r::Test::GCodeReader->new(gcode => io($input_file)->all)->parse(sub {
+ Slic3r::GCode::Reader->new(gcode => io($input_file)->all)->parse(sub {
my ($self, $cmd, $args, $info) = @_;
if ($cmd eq 'G1' && $info->{extruding}) {