Improved error handling when importing configuration from a G-code.

This commit is contained in:
bubnikv 2017-06-14 20:18:46 +02:00
parent f7334f58d3
commit 2ac981e422
5 changed files with 47 additions and 15 deletions

View file

@ -100,7 +100,7 @@ sub merge {
sub load {
my $class = shift;
my ($file) = @_;
if ($file =~ /\.gcode$/i || $file =~ /\.g$/i) {
my $config = $class->new;
$config->_load_from_gcode($file);