Good Afternoon,

Among other elements values that my script finds is value for sepid

sepid = content.find(".//{http://www.huawei.com.cn/schema/common/v2_1}sepid
").text


however, if i pass xml data that DOES NOT contain sepid element, i get an
error:

Traceback (most recent call last):
  File "/usr/local/bin/receive.py", line 21, in <module>
    sepid = content.find(".//{
http://www.huawei.com.cn/schema/common/v2_1}sepid";).text
AttributeError: 'NoneType' object has no attribute 'text'


some messages i receive will have the sepid parameter, other will not have
this parameter. How can i cater for this? kinda like an if .. else
implementation for xml.etree.ElementTree  ?



Thanks in advance.

Saludos

Ombongi Moraa Faith
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to