From d8e37644d3d2004d1d7fc909a5f73133062a7cbc Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 12 Aug 2017 21:26:57 +0200 Subject: [PATCH] python3 updates --- lib/coinchooser.py | 2 +- plugins/trustedcoin/trustedcoin.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/coinchooser.py b/lib/coinchooser.py index 1550f7b8..cbff35ec 100644 --- a/lib/coinchooser.py +++ b/lib/coinchooser.py @@ -68,7 +68,7 @@ class PRNG: return seq[self.randint(0, len(seq))] def shuffle(self, x): - for i in reversed(xrange(1, len(x))): + for i in reversed(range(1, len(x))): # pick an element in x[:i+1] with which to exchange x[i] j = self.randint(0, i+1) x[i], x[j] = x[j], x[i] diff --git a/plugins/trustedcoin/trustedcoin.py b/plugins/trustedcoin/trustedcoin.py index 2e29299a..218acecd 100644 --- a/plugins/trustedcoin/trustedcoin.py +++ b/plugins/trustedcoin/trustedcoin.py @@ -29,8 +29,8 @@ import re import requests import json from hashlib import sha256 -from urlparse import urljoin -from urllib import quote +from urllib.parse import urljoin +from urllib.parse import quote import electrum from electrum import bitcoin