Browse Source

We aren't Python2-only anymore

pip inside virtualenv should point to the correct one (either pip2 or pip3)
master
Kristaps Kaupe 7 years ago
parent
commit
a88cce4501
  1. 2
      jmclient/jmclient/wallet_utils.py

2
jmclient/jmclient/wallet_utils.py

@ -813,7 +813,7 @@ def wallet_fetch_history(wallet, options):
print('(as if yield generator was a bank account)')
except ImportError:
print('scipy not installed, unable to predict accumulation rate')
print('to add it to this virtualenv, use `pip2 install scipy`')
print('to add it to this virtualenv, use `pip install scipy`')
total_wallet_balance = sum(wallet.get_balance_by_mixdepth().values())
if balance != total_wallet_balance:

Loading…
Cancel
Save