We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9910556 commit 4a069e2Copy full SHA for 4a069e2
src/depends.py
@@ -191,7 +191,7 @@ def try_import(module, log_extra=False):
191
def check_ripemd160():
192
"""Check availability of the RIPEMD160 hash function"""
193
try:
194
- from fallback import RIPEMD160Hash
+ from .fallback import RIPEMD160Hash
195
except ImportError:
196
return False
197
return RIPEMD160Hash is not None
@@ -385,7 +385,7 @@ def check_pyqt():
385
"""
386
# pylint: disable=no-member
387
388
- from fallback import PyQt5
+ from .fallback import PyQt5
389
390
logger.error(
391
'PyBitmessage requires PyQt5 or qtpy, PyQt 4.8 or later'
0 commit comments