electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 51b6fa0e4658122bf7777a5df99fea5ec36805ef
parent 6afc11208d49c429ddd6572bfd3d7204f33fe6c8
Author: ThomasV <thomasv@electrum.org>
Date:   Sat, 22 Apr 2017 06:59:29 +0200

Merge pull request #2367 from spamdaemon/patch-1

Fixed a syntax error with python 3.6
Diffstat:
Mlib/util.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/util.py b/lib/util.py @@ -534,7 +534,7 @@ class SocketPipe: raise timeout except ssl.SSLError: raise timeout - except socket.error, err: + except socket.error as err: if err.errno == 60: raise timeout elif err.errno in [11, 35, 10035]: