summaryrefslogtreecommitdiff
path: root/lib/versioning.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/versioning.h')
-rw-r--r--lib/versioning.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/versioning.h b/lib/versioning.h
index 33dc31c4..06065656 100644
--- a/lib/versioning.h
+++ b/lib/versioning.h
@@ -43,7 +43,7 @@ public:
timeStamp_(formatTime<Zstring>(Zstr("%Y-%m-%d %H%M%S"), timeStamp)) //e.g. "2012-05-15 131513"
{
if (timeStamp_.size() != 17) //formatTime() returns empty string on error; unexpected length: e.g. problem in year 10000!
- throw FileError(_("Failure to create timestamp for versioning:") + L" \'" + timeStamp_ + L"\'");
+ throw FileError(_("Unable to create timestamp for versioning:") + L" \"" + timeStamp_ + L"\"");
}
bool revisionFile(const Zstring& fullName, const Zstring& relativeName, CallbackMoveFile& callback); //throw FileError; return "false" if file is not existing
bgstack15