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
0f6328af
Commit
0f6328af
authored
Aug 31, 2021
by
Forest Godfrey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a few python2 to python3 print problems
parent
881ede0d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
test_v2.py
etsy/test_v2.py
+3
-3
No files found.
etsy/test_v2.py
View file @
0f6328af
...
...
@@ -74,7 +74,7 @@ print('findAllUserShippingTemplates => %r' %
def
testCreateListing
():
print
"Creating listing..."
print
(
"Creating listing..."
)
result
=
etsy_api
.
createListing
(
description
=
config
.
description
,
...
...
@@ -88,12 +88,12 @@ def testCreateListing():
listing_id
=
result
[
0
][
'listing_id'
]
print
"Created listing with listing id
%
d"
%
listing_id
print
(
"Created listing with listing id
%
d"
%
listing_id
)
result
=
etsy_api
.
uploadListingImage
(
listing_id
=
listing_id
,
image
=
config
.
image_file
)
print
"Result of uploading image:
%
r"
%
result
print
(
"Result of uploading image:
%
r"
%
result
)
testCreateListing
()
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