File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 11Changelog
22========
33
4+ * 0.7.2 (November 28th, 2017)
5+ * Fixed bug in ListMixin count method.
6+
47* 0.7.1 (November 28th, 2017)
58 * Added support for sending invoices.
69 * Added count to ListMixin.
Original file line number Diff line number Diff line change @@ -45,9 +45,9 @@ Manually connecting with OAuth version 1.0
4545 )
4646
4747 callback_url = ' http://localhost:8000' # Quickbooks will send the response to this url
48- authorize_url = client .get_authorize_url(callback_url)
49- request_token = client .request_token
50- request_token_secret = client .request_token_secret
48+ authorize_url = session_manager .get_authorize_url(callback_url)
49+ request_token = session_manager .request_token
50+ request_token_secret = session_manager .request_token_secret
5151
5252 Store the ``authorize_url ``, ``request_token ``, and ``request_token_secret ``
5353for use in the Callback method.
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ def read(*parts):
1010 return fp .read ()
1111
1212
13- VERSION = (0 , 7 , 1 )
13+ VERSION = (0 , 7 , 2 )
1414version = '.' .join (map (str , VERSION ))
1515
1616setup (
You can’t perform that action at this time.
0 commit comments