Fixed a regression bug of Slic3r::encode() / decode()

This commit is contained in:
bubnikv
2017-08-30 14:57:13 +02:00
parent dcbc28fd49
commit 247070cd82
3 changed files with 12 additions and 8 deletions

View File

@@ -44,7 +44,7 @@
try {
THIS->load_from_gcode(input_file);
} catch (std::exception& e) {
croak("Error exracting configuration from a g-code %s:\n%s\n", input_file.c_str(), e.what());
croak("Error extracting configuration from a g-code %s:\n%s\n", input_file.c_str(), e.what());
}
%};
%name{_save} void save(std::string file);