From 9d15855011a8f14c78bc1898a0deb984173d5940 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Mon, 24 Dec 2007 12:01:28 -0200 Subject: [PATCH] Improve error message --- src/repository.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/repository.cpp b/src/repository.cpp index b859885..1c7f8ba 100644 --- a/src/repository.cpp +++ b/src/repository.cpp @@ -81,7 +81,7 @@ Repository::Transaction *Repository::newTransaction(const QString &branch, const int revnum) { if (!branches.contains(branch)) { - qCritical() << branch << "is not known in repository" << name; + qCritical() << branch << "is not a known branch in repository" << name; return 0; } -- 2.11.4.GIT