Skip to content
Snippets Groups Projects
Commit 3cb96355 authored by nkour's avatar nkour
Browse files

features.py still problematic, just adding the stuff alexey said in case his...

features.py still problematic, just adding the stuff alexey said in case his grab this to continue fixing
parent 0b331139
No related branches found
No related tags found
No related merge requests found
......@@ -88,8 +88,10 @@ def getRegInfo(disp,host,info={}):
if df: return DataForm(node=df)
df=DataForm(typ='form')
for i in resp.getQueryPayload():
if i.getName()=='instructions': df.addInstructions(i.getData())
else: df.setField(i.getName()).setValue(i.getData())
try: #FIXME: temporary patch by Alexey to make it work :|
if i.getName()=='instructions': df.addInstructions(i.getData())
else: df.setField(i.getName()).setValue(i.getData())
except: pass
return df
def register(disp,host,info):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment