DsRestAPI.py:21: SyntaxWarning: "is not" with a literal. Did you mean "!="?
/src/DsRestAPI/Api/Python/DsRestAPI.py:21: SyntaxWarning: "is not" with a literal. Did you mean "!="? 14:16:27 if p_url is not None and p_url is not "":
is checks for identity - if the two variables point to the exact same object.
== checks for equality - if the two variables point at values are equal.