Browse Source

Merge #287: We aren't Python2-only anymore

a88cce4 We aren't Python2-only anymore (Kristaps Kaupe)
master
AdamISZ 7 years ago
parent
commit
508948f02f
No known key found for this signature in database
GPG Key ID: 141001A1AF77F20B
  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)') print('(as if yield generator was a bank account)')
except ImportError: except ImportError:
print('scipy not installed, unable to predict accumulation rate') 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()) total_wallet_balance = sum(wallet.get_balance_by_mixdepth().values())
if balance != total_wallet_balance: if balance != total_wallet_balance:

Loading…
Cancel
Save