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