File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -282,15 +282,16 @@ Formating helpers are available in helpers.py. Example usage:
282282
283283Exception Handling
284284----------------
285- The QuickbooksException object contains additional information from QBO.
285+ The QuickbooksException object contains additional [ QBO error code] ( https://developer.intuit.com/app/developer/qbo/docs/develop/troubleshooting/error-codes#id1 ) information.
286+
286287
287288 from quickbooks.exceptions import QuickbooksException
288289
289290 try:
290291 # perform a Quickbooks operation
291292 except QuickbooksException as e:
292293 e.message # contains the error message returned from QBO
293- e.error_code # contains the [QBO error code](https://developer.intuit.com/app/developer/qbo/docs/develop/troubleshooting/error-codes#id1)
294+ e.error_code # contains the
294295 e.detail # contains additional information when available
295296
296297
Original file line number Diff line number Diff line change 11intuit-oauth == 1.2.3
22rauth >= 0.7.1
3- requests >= 2.23.0
3+ requests >= 2.19.1
44simplejson >= 3.17.0
55six >= 1.14.0
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def read(*parts):
3333 'setuptools' ,
3434 'intuit-oauth==1.2.3' ,
3535 'rauth>=0.7.1' ,
36- 'requests>=2.23.0 ' ,
36+ 'requests>=2.19.1 ' ,
3737 'simplejson>=3.17.0' ,
3838 'six>=1.14.0' ,
3939 'python-dateutil' ,
You can’t perform that action at this time.
0 commit comments