after verifying mediagoblin account in both pypump-shell and manually via command line, above error occurs when trying to access user's inbox. Note the line [print pump.me] does not return an error.
KeyError Traceback (most recent call last)
/home/user/Documents/2015_summer/MediaGoblin/PyPump/pypump-shell in ()
----> 1 print pump.me.inbox
/home/user/Documents/2015_summer/MediaGoblin/PyPump/pypump/models/person.pyc in inbox(self)
148 if not self.isme:
149 raise PyPumpException("You can't read other people's inboxes")
--> 150 self._inbox = self._inbox or Inbox(self.links['activity-inbox'], pypump=self._pump)
151 return self._inbox
152
KeyError: 'activity-inbox'
In [2]: print pump.me
SapienTech