From 1fec14d7591a4604bc29185da9a232713da54a29 Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Sat, 31 Oct 2020 00:11:28 +0000 Subject: [PATCH] Clarify error message to be more helpful --- modules/chankeep.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/chankeep.py b/modules/chankeep.py index e4f3f00..0fc7a12 100644 --- a/modules/chankeep.py +++ b/modules/chankeep.py @@ -41,7 +41,7 @@ def emptyChanAllocate(net, flist, relay, new): allocated = {} toalloc = len(flist) if toalloc > sum(chanfree[0].values()): - error("Too many channels to allocate for %s - this is probably a bug" % net) + error("Too many channels to allocate for %s - channels joined since initial query, wait a while" % net) return False for i in chanfree[0].keys(): for x in range(chanfree[0][i]):