[tuxdroid-svn] r5977 - software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/execut
Status: Beta
Brought to you by:
ks156
|
From: jerome <c2m...@c2...> - 2009-12-15 09:54:09
|
Author: jerome
Date: 2009-12-15 10:53:54 +0100 (Tue, 15 Dec 2009)
New Revision: 5977
Modified:
software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/plugin-skype.py
Log:
* Removed debug messages.
Modified: software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/plugin-skype.py
===================================================================
--- software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/plugin-skype.py 2009-12-15 09:51:42 UTC (rev 5976)
+++ software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/plugin-skype.py 2009-12-15 09:53:54 UTC (rev 5977)
@@ -163,7 +163,6 @@
'''
Tux Droid plugin event callback.
'''
- self.throwTrace(self.command)
if self.command == 'incoming':
#Accept call
if eventName == 'head':
@@ -174,9 +173,7 @@
#endcall command, waiting for the call ends.
if self.command == 'wait_end_call':
- self.throwTrace('here 0')
if eventName == 'head':
- self.throwTrace('here 1')
#Then send finish call command to IPN server.
self.client.notify('end_call')
@@ -185,7 +182,6 @@
'''
Tux Droid event callback for outgoing calls.
'''
- self.throwTrace("outgoing")
if self.command == 'outgoing':
#Proceed call
if eventName == 'head':
|