diff options
Diffstat (limited to 'src/repository.cpp')
-rw-r--r-- | src/repository.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/repository.cpp b/src/repository.cpp index 699e686..1ebdb6f 100644 --- a/src/repository.cpp +++ b/src/repository.cpp @@ -114,8 +114,8 @@ Repository::Transaction *Repository::newTransaction(const QString &branch, const int revnum) { if (!branches.contains(branch)) { - qCritical() << branch << "is not a known branch in repository" << name; - return 0; + qWarning() << branch << "is not a known branch in repository" << name << endl + << "Going to create it automatically"; } Transaction *txn = new Transaction; |