diff options
Diffstat (limited to 'src/lib/uploader.cc')
| -rw-r--r-- | src/lib/uploader.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/uploader.cc b/src/lib/uploader.cc index 36a86819b..8ed2a73f8 100644 --- a/src/lib/uploader.cc +++ b/src/lib/uploader.cc @@ -76,7 +76,7 @@ Uploader::upload_directory (boost::filesystem::path base, boost::filesystem::pat if (is_directory(i.path())) { upload_directory (base, i.path(), transferred, total_size); } else { - _set_status(String::compose(_("copying %1"), i.path().filename().string())); + _set_status(fmt::format(_("copying {}"), i.path().filename().string())); upload_file (i.path(), remove_prefix (base, i.path()), transferred, total_size); } } |
