features.py still problematic, just adding the stuff alexey said in case his grab this to continue fixing
This commit is contained in:
parent
0b331139ed
commit
3cb963554d
|
@ -88,8 +88,10 @@ def getRegInfo(disp,host,info={}):
|
||||||
if df: return DataForm(node=df)
|
if df: return DataForm(node=df)
|
||||||
df=DataForm(typ='form')
|
df=DataForm(typ='form')
|
||||||
for i in resp.getQueryPayload():
|
for i in resp.getQueryPayload():
|
||||||
|
try: #FIXME: temporary patch by Alexey to make it work :|
|
||||||
if i.getName()=='instructions': df.addInstructions(i.getData())
|
if i.getName()=='instructions': df.addInstructions(i.getData())
|
||||||
else: df.setField(i.getName()).setValue(i.getData())
|
else: df.setField(i.getName()).setValue(i.getData())
|
||||||
|
except: pass
|
||||||
return df
|
return df
|
||||||
|
|
||||||
def register(disp,host,info):
|
def register(disp,host,info):
|
||||||
|
|
Loading…
Reference in New Issue