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:
282
282
283
283
Exception Handling
284
284
----------------
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
+
286
287
287
288
from quickbooks.exceptions import QuickbooksException
288
289
289
290
try:
290
291
# perform a Quickbooks operation
291
292
except QuickbooksException as e:
292
293
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
294
295
e.detail # contains additional information when available
295
296
296
297
Original file line number Diff line number Diff line change 1
1
intuit-oauth == 1.2.3
2
2
rauth >= 0.7.1
3
- requests >= 2.23.0
3
+ requests >= 2.19.1
4
4
simplejson >= 3.17.0
5
5
six >= 1.14.0
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def read(*parts):
33
33
'setuptools' ,
34
34
'intuit-oauth==1.2.3' ,
35
35
'rauth>=0.7.1' ,
36
- 'requests>=2.23.0 ' ,
36
+ 'requests>=2.19.1 ' ,
37
37
'simplejson>=3.17.0' ,
38
38
'six>=1.14.0' ,
39
39
'python-dateutil' ,
You can’t perform that action at this time.
0 commit comments