forked from indymedia/epicyon
Don't test for truth
parent
4b9db09263
commit
53337dd009
|
@ -86,8 +86,6 @@ def postJsonString(session,postJsonStr: str, \
|
||||||
return None
|
return None
|
||||||
|
|
||||||
postResult = session.post(url = inboxUrl, data = postJsonStr, headers=headers)
|
postResult = session.post(url = inboxUrl, data = postJsonStr, headers=headers)
|
||||||
if not postResult:
|
|
||||||
return None
|
|
||||||
postResultCode=str(postResult)
|
postResultCode=str(postResult)
|
||||||
if '[' in postResultCode and ']' in postResultCode:
|
if '[' in postResultCode and ']' in postResultCode:
|
||||||
postResultCode=postResultCode.split('[')[1]
|
postResultCode=postResultCode.split('[')[1]
|
||||||
|
|
Loading…
Reference in New Issue