summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd@luon.net>2007-09-29 10:58:49 +0000
committerSjoerd Simons <sjoerd@luon.net>2007-09-29 10:58:49 +0000
commit2a5d3b44b1092c3ba9eda9c4fc4ec4e5f2d6a0af (patch)
tree29677b1723100d2bbfa83f61b97138dbed498cca
parent1f3aaba1f201bc1df9f99e1c0fa056ab8fdca1cb (diff)
call.py: Fix the definition of run_main_loop
-rw-r--r--examples/call.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/call.py b/examples/call.py
index 3818d81..3ce9360 100644
--- a/examples/call.py
+++ b/examples/call.py
@@ -35,7 +35,7 @@ class Call:
self.conn[CONN_INTERFACE].connect_to_signal('NewChannel',
self.new_channel_cb)
- def run_main_loop():
+ def run_main_loop(self):
self.loop = gobject.MainLoop()
self.loop.run()