Skip to content
Snippets Groups Projects
Commit 9e48c902 authored by Florent Lamiraux's avatar Florent Lamiraux Committed by Florent Lamiraux florent@laas.fr
Browse files

Make error message more specific whenever Entity.__getattr__ fails.

parent a46e2f94
No related branches found
No related tags found
No related merge requests found
...@@ -143,7 +143,15 @@ class Entity (object) : ...@@ -143,7 +143,15 @@ class Entity (object) :
try: try:
return self.signal(name) return self.signal(name)
except: except:
object.__getattr__(self, name) try:
object.__getattr__(self, name)
except AttributeError:
raise AttributeError('Entity named "%s" has no attribute %s\n'%
(self.name, name)+
' entity attributes are usually either\n'+
' - commands,\n'+
' - signals or,\n'+
' - user defined attributes')
def __setattr__(self, name, value): def __setattr__(self, name, value):
if name in map(lambda s: s.getName().split(':')[-1],self.signals()): if name in map(lambda s: s.getName().split(':')[-1],self.signals()):
......
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