aboutsummaryrefslogtreecommitdiff
path: root/frozen_deps/base58/__init__.py
diff options
context:
space:
mode:
authorDeterminant <[email protected]>2022-11-17 18:08:59 -0800
committerDeterminant <[email protected]>2022-11-17 18:08:59 -0800
commit8154806fe2fccacdc3dafaa68181a07bcf8d6c4c (patch)
treef477e6a005599bb88c18db142c267b9297c6060b /frozen_deps/base58/__init__.py
parentbe4dc086591c9bced04a507d127c83811c5700c4 (diff)
v0.1.7
Diffstat (limited to 'frozen_deps/base58/__init__.py')
-rw-r--r--frozen_deps/base58/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/frozen_deps/base58/__init__.py b/frozen_deps/base58/__init__.py
index a86ceb7..929014f 100644
--- a/frozen_deps/base58/__init__.py
+++ b/frozen_deps/base58/__init__.py
@@ -13,7 +13,7 @@ from functools import lru_cache
from hashlib import sha256
from typing import Mapping, Union
-__version__ = '2.1.0'
+__version__ = '2.1.1'
# 58 character alphabet used
BITCOIN_ALPHABET = \
@@ -102,7 +102,7 @@ def b58decode_int(
decimal = decimal * base + map[char]
except KeyError as e:
raise ValueError(
- "Invalid character <{char}>".format(char=chr(e.args[0]))
+ "Invalid character {!r}".format(chr(e.args[0]))
) from None
return decimal