|
From: Mikel L. <lar...@ei...> - 2004-01-12 08:24:15
|
Hi!
I'm testing OpenFlow Application Wizard and I had to modify source code
in order to run it.
These are the changes:
->application.py
222: worklists_folder = getattr(self.aq_parent, 'Worklists',None)
223: if worklist_folder and ('worklist' in ...)
^
|
There was a mistake, it must be: if worklists_folder and ....
->operation.py
Here, I got 'AttributeError' when calling
instance = getattr(openflow, instance_id)
in function runOperation and I changed it:
instance = openflow.getInstance(instance_id)
Now it seems to work correctly.
Best regards
Mikel Larreategi
lar...@ei...
|