From c006678289431dbe2998d05c00d4c05ea58b27c0 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 31 May 2015 15:00:43 +0200 Subject: [PATCH] fix indent --- lib/util.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/util.py b/lib/util.py index 201aa9784..cf7bc37a9 100644 --- a/lib/util.py +++ b/lib/util.py @@ -477,8 +477,8 @@ class Contacts(StoreDict): _type, addr = self[k] if _type == 'address': return addr - out = run_hook('resolve_address', k) - if out: - return out + out = run_hook('resolve_address', k) + if out: + return out raise Exception("invalid Bitcoin address", k)