Skip to content Skip to sidebar Skip to footer

'str' Object Has No Attribute 'submitfeedresult'

I'm working on a Flask application that communicates with Amazon's MWS API. One of my functions sends XML feeds to post data on Amazon. It works fine at first, but after if I try t

Solution 1:

I was able to figure this out. I called out 'feed_info' as a string a few lines later to flash the ID, which was causing it to give me an error.

flash('Submitted Product Feed: ' + str(feed_info))

Post a Comment for "'str' Object Has No Attribute 'submitfeedresult'"