commit 1a1ba963ccb9bbe8c7d3f18919afd2cf8eb9f4bc parent 8684faf8b9760237ce9632987f7446e97b4c3865 Author: cfillion <cfillion@users.noreply.github.com> Date: Thu, 30 Mar 2017 19:44:20 -0400 transaction: tweak index load error message Diffstat:
M | src/transaction.cpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/transaction.cpp b/src/transaction.cpp @@ -172,7 +172,7 @@ IndexPtr Transaction::loadIndex(const Remote &remote) } catch(const reapack_error &e) { m_receipt.addError({ - "Couldn't load repository index: " + string(e.what()), remote.name()}); + "Couldn't load repository: " + string(e.what()), remote.name()}); return nullptr; } }