Fix ownereditor popup menu handling

svn: r12550
This commit is contained in:
Gerald Britton
2009-05-19 20:07:00 +00:00
parent 0a9017e25f
commit e3bd5d1e69
2 changed files with 10 additions and 3 deletions

View File

@@ -107,3 +107,9 @@ class Researcher(LocationBase):
self.name = other_researcher.name
self.addr = other_researcher.addr
self.email = other_researcher.email
def get(self):
return [getattr(self, value) for value in
['name', 'addr', 'city', 'state',
'country', 'postal', 'phone', 'email']
]