BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
etsy-python
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
etsy-python
Commits
ce27820c
Commit
ce27820c
authored
Jan 19, 2011
by
Marc Abramowitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Raise an exception with the Etsy response text when we failed to decode it as JSON.
parent
78e4dbfe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
_core.py
etsy/_core.py
+5
-1
No files found.
etsy/_core.py
View file @
ce27820c
...
...
@@ -327,7 +327,11 @@ class API(object):
self
.
log
(
'API._get: http_method =
%
r, url =
%
r, data =
%
r'
%
(
http_method
,
url
,
data
))
self
.
data
=
self
.
decode
(
data
)
try
:
self
.
data
=
self
.
decode
(
data
)
except
json
.
JSONDecodeError
:
raise
ValueError
(
'Could not decode response from Etsy as JSON:
%
r'
%
data
)
self
.
count
=
self
.
data
[
'count'
]
return
self
.
data
[
'results'
]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment