From 4e7ef8abfc4913eb1dc8a389689d3a04bf043999 Mon Sep 17 00:00:00 2001 From: Wang Xuerui Date: Sat, 17 Dec 2016 16:16:07 +0800 Subject: [PATCH] Fix two missing quotes of download error message --- src/rustup-utils/src/errors.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rustup-utils/src/errors.rs b/src/rustup-utils/src/errors.rs index 9b70becb84..f692d6e14c 100644 --- a/src/rustup-utils/src/errors.rs +++ b/src/rustup-utils/src/errors.rs @@ -75,14 +75,14 @@ error_chain! { path: PathBuf, } { description("could not download file") - display("could not download file from '{}' to '{}", url, path.display()) + display("could not download file from '{}' to '{}'", url, path.display()) } DownloadNotExists { url: Url, path: PathBuf, } { description("could not download file") - display("could not download file from '{}' to '{}", url, path.display()) + display("could not download file from '{}' to '{}'", url, path.display()) } InvalidUrl { url: String,