From 84c9136e2d990b2079890b66fd88568f29dbf859 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Thu, 12 Mar 2020 09:40:20 +0100 Subject: [PATCH] Fixed formatting error in preset update from the net. --- src/slic3r/Utils/PresetUpdater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/Utils/PresetUpdater.cpp b/src/slic3r/Utils/PresetUpdater.cpp index a28937e15..d7c2aea3a 100644 --- a/src/slic3r/Utils/PresetUpdater.cpp +++ b/src/slic3r/Utils/PresetUpdater.cpp @@ -394,7 +394,7 @@ Updates PresetUpdater::priv::get_config_updates(const Semver &old_slic3r_version auto bundle_path_idx = vendor_path / idx.path().filename(); if (! fs::exists(bundle_path)) { - BOOST_LOG_TRIVIAL(info) << "Confing bundle not installed for vendor %1%, skipping: " << idx.vendor(); + BOOST_LOG_TRIVIAL(info) << boost::format("Confing bundle not installed for vendor %1%, skipping: ") % idx.vendor(); continue; }