Skip to content

Commit f3e71fa

Browse files
committed
Merge branch 'master' of github.com:sibblegp/coinbase_python
Conflicts: MANIFEST coinbase/__init__.py coinbase/models/error.py setup.py
2 parents 0376394 + e168615 commit f3e71fa

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
README.md
2+
coinbase/ca_certs.txt

coinbase/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ def buy_btc(self, qty, pricevaries=False):
301301

302302
def sell_btc(self, qty):
303303
"""
304-
Sell BitCoin to Coinbase for USD
304+
Sell Bitcoin to Coinbase for USD
305305
:param qty: BitCoin quantity to be sold
306306
:return: CoinbaseTransfer with all transfer details on success
307307
:raise: CoinbaseError with the error list received from Coinbase on

coinbase/models/error.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
class CoinbaseError(Exception):
55

66
def __init__(self, message, errors=None):
7-
Exception.__init__(self, ' '.join([message] + (errors or [])))
7+
super(CoinbaseError, Exception).__init__(self, ' '.join([message] + (errors or [])))

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
name='coinbase',
55
version='0.2.1',
66
packages=['coinbase', 'coinbase.models'],
7+
package_data={'coinbase': ['ca_certs.txt']},
78
url='https://github.com/sibblegp/coinbase_python',
89
license='MIT',
910
author='George Sibble',

0 commit comments

Comments
 (0)