Comment 11 for bug 498181

Revision history for this message
Edwin Grubbs (edwin-grubbs) wrote : Re: cannot propose a member to a team trough launchpadlib

The join() named operation is already exposed. I don't know how I missed that before. Be aware of bug 504297 that prevents you from calling named operations on launchpad.me if you are using launchpadlib as the client.

Instead of
  launchpad.me.join(team=launchpad.people['foo'])
use
  launchpad.people[launchpad.me.name].join(team=launchpad.people['foo'])
or
  launchpad.load(launchpad.me.self_link).join(team=launchpad.people['foo'])