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
diff options
context:
space:
mode:
authorAlessandro Ranellucci <aar@cpan.org>2012-08-22 21:37:45 +0400
committerAlessandro Ranellucci <aar@cpan.org>2012-08-22 21:37:45 +0400
commit8e363ee070bb08736194c449747f77a2865253e9 (patch)
treea4917c1ce4b38fa5294b96259f441765885f63b0 /slic3r.pl
parent4bddb665139a51efab5ed68b30ede4ee9b5dbcf4 (diff)
Remove warnings caused by output filenames containing % characters
Diffstat (limited to 'slic3r.pl')
-rwxr-xr-xslic3r.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/slic3r.pl b/slic3r.pl
index 2990d5aa2..a4f5ca4d1 100755
--- a/slic3r.pl
+++ b/slic3r.pl
@@ -94,7 +94,7 @@ if (@ARGV) { # slicing from command line
output_file => $opt{output},
status_cb => sub {
my ($percent, $message) = @_;
- printf "=> $message\n";
+ printf "=> %s\n", $message;
},
);
if ($opt{export_svg}) {