From b1faaf7335d2c7bb951c1170e66ee6aab9d37e66 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Mon, 22 Oct 2018 18:46:09 +0300 Subject: Put quotes around a URL in a message to make it more obvious if it is empty Change-Id: I03fe3f70ee97066d9c2083d4ef091c501f241392 --- desktop/source/deployment/misc/dp_ucb.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'desktop/source/deployment') diff --git a/desktop/source/deployment/misc/dp_ucb.cxx b/desktop/source/deployment/misc/dp_ucb.cxx index 017aad657279..75bbbe843142 100644 --- a/desktop/source/deployment/misc/dp_ucb.cxx +++ b/desktop/source/deployment/misc/dp_ucb.cxx @@ -103,7 +103,7 @@ bool create_folder( // invalid: has to be at least "auth:/..." if (throw_exc) throw ContentCreationException( - "Cannot create folder (invalid path): " + url, + "Cannot create folder (invalid path): '" + url + "'", Reference(), ContentCreationError_UNKNOWN ); return false; } @@ -154,7 +154,7 @@ bool create_folder( } if (throw_exc) throw ContentCreationException( - "Cannot create folder: " + url, + "Cannot create folder: '" + url + "'", Reference(), ContentCreationError_UNKNOWN ); return false; } -- cgit