From e6273febe57e0aa19022e1763c82df65e49a3b45 Mon Sep 17 00:00:00 2001 From: Joe Steele Date: Mon, 10 Jun 2024 12:12:41 -0400 Subject: [PATCH] Had some string compares against ints --- social.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/social.py b/social.py index 19412ed..9724f93 100644 --- a/social.py +++ b/social.py @@ -1028,7 +1028,7 @@ def post_to_wp(title, content, headers,date, rating,address, picslist): #countreview = False addresshtml = re.sub(" ", ".",address) googleadress = r""+address+r"" + addresshtml + r">"+str(address)+r"" contentpics = '' picl = picslist[1:-1] pic2 = picl.replace(",","")#re.sub(r',','',picl) #re.sub( r'[^a-zA-Z0-9]','',tempdate[1]) @@ -1154,7 +1154,7 @@ def post_to_wp(title, content, headers,date, rating,address, picslist): file_id, link = check_media(picname, headers) # link = linknew['rendered'] if file_id is False: - print (' '+picname+' was not already found in library, adding it') + print (' '+str(picname)+' was not already found in library, adding it') # countreview = True image = { "file": open(pic, "rb"), @@ -1191,7 +1191,7 @@ def post_to_wp(title, content, headers,date, rating,address, picslist): headers=headers, data={"post" : post_id},timeout=30) except Exception as error: print (' Error- Image ',picname,' was not attached to post. response: ',\ - image_response+' '+error) + image_response+' '+type(error).__name__) try: post_response = requests.post(env.wpAPI + "/posts/" + str(post_id),\ headers=headers,timeout=30)