From 09405f374e9170c0f7ce1537a4833761425114e3 Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Sun, 1 Nov 2020 03:36:23 +0000 Subject: [PATCH] Clarify message output on confirm command --- commands/confirm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/confirm.py b/commands/confirm.py index 93af4d0..c7b1552 100644 --- a/commands/confirm.py +++ b/commands/confirm.py @@ -15,7 +15,7 @@ class ConfirmCommand: failure("Must be a number, not %s" % spl[2]) return if not int(spl[2]) in main.network[spl[1]].relays.keys(): - failure("No such relay on %s: %s" % (spl[2], spl[1])) + failure("No such relay on %s: %s" % (spl[1], spl[2])) return regproc.confirmAccount(spl[1], int(spl[2]), spl[3]) success("Requested confirmation on %s - %s with token %s" % (spl[1], spl[2], spl[3]))