Changeset 60
- Timestamp:
- 09/25/07 18:14:52 (1 year ago)
- Files:
-
- photobooth/photobooth.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
photobooth/photobooth.py
r59 r60 104 104 print "conecting to %s" % tag 105 105 if tag in self.people: 106 self.remote.call('picnic.relations.add', 107 dict(id=person['id'], 108 id2=self.people[tag]['id'])) 106 d = self.remote.call('picnic.relations.add', 107 dict(id=person['id'], 108 id2=self.people[tag]['id'])) 109 110 d2 = self.remote.call('picnic.relations.add', 111 dict(id2=person['id'], 112 id1=self.people[tag]['id'])) 109 113 return person 110 114
