Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/poll.py
diff options
context:
space:
mode:
authorMorgan Collett <morgan.collett@gmail.com>2007-08-13 11:04:15 (GMT)
committer Morgan Collett <morgan.collett@gmail.com>2007-08-13 11:04:15 (GMT)
commit51982db1291b4147093fcb285d649c84cbf80142 (patch)
tree380c7031af4b763ab7e484e6d659b7bf62a97740 /poll.py
parent52290f1e577a994f9427a545a03b02f16ba339c5 (diff)
Clean up FIXME comments around getting other polls
Diffstat (limited to 'poll.py')
-rw-r--r--poll.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/poll.py b/poll.py
index 1ebd3c0..cc78794 100644
--- a/poll.py
+++ b/poll.py
@@ -1407,10 +1407,6 @@ class PollSession(ExportedGObject):
if sender == self.my_bus_name:
# then I don't want to respond to my own Hello
return
- self._logger.debug('Telling %s to send me their polls', sender)
- # FIXME: Ask for polls back
- #self.tube.get_object(sender, PATH).PollsWanted(self.my_bus_name,
- # dbus_interface=IFACE)
# Send my polls
for poll in self.activity.get_my_polls():
self._logger.debug('Telling %s about my %s' %
@@ -1420,6 +1416,7 @@ class PollSession(ExportedGObject):
poll.createdate.toordinal(),
poll.maxvoters, poll.question, poll.number_of_options,
poll.options, poll.data, poll.votes, dbus_interface=IFACE)
+ # Ask for other's polls back
self.HelloBack(sender)
def helloback_cb(self, recipient, sender):