| Index: client/dom/scripts/idlnode.py
|
| diff --git a/client/dom/scripts/idlnode.py b/client/dom/scripts/idlnode.py
|
| index 805decc7034e31843bc18b96b5dff69fc17e58af..8e4956ca000060db1efbd2f8677fc80e4b0e9d88 100755
|
| --- a/client/dom/scripts/idlnode.py
|
| +++ b/client/dom/scripts/idlnode.py
|
| @@ -378,7 +378,9 @@ class IDLInterface(IDLNode):
|
|
|
| def has_attribute(self, candidate):
|
| for attribute in self.attributes:
|
| - if attribute.id == candidate.id and attribute.is_fc_getter == candidate.is_fc_getter and attribute.is_fc_setter == candidate.is_fc_setter:
|
| + if (attribute.id == candidate.id and
|
| + attribute.is_fc_getter == candidate.is_fc_getter and
|
| + attribute.is_fc_setter == candidate.is_fc_setter):
|
| return True
|
| return False
|
|
|
|
|