summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul W. Frields <stickster@gmail.com>2009-05-25 09:33:38 -0400
committerPaul W. Frields <stickster@gmail.com>2009-05-25 09:33:38 -0400
commita344443d4200d2ec5ab0f95ef620a7bb4201a90a (patch)
tree578c087d6a1799db81490d74773807b97ded4421
parent084643c68796761e71818b929342a36653648d5e (diff)
downloadpulsecaster-a344443d4200d2ec5ab0f95ef620a7bb4201a90a.tar.gz
pulsecaster-a344443d4200d2ec5ab0f95ef620a7bb4201a90a.tar.xz
pulsecaster-a344443d4200d2ec5ab0f95ef620a7bb4201a90a.zip
Remove unnecessary parameter from wrapper method
-rw-r--r--pulseaudio/PulseObj.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pulseaudio/PulseObj.py b/pulseaudio/PulseObj.py
index e354e57..98c4105 100644
--- a/pulseaudio/PulseObj.py
+++ b/pulseaudio/PulseObj.py
@@ -548,10 +548,10 @@ class PulseObj:
###
- def pulse_context_subscribe(self, mask, callback):
+ def pulse_context_subscribe(self, mask):
"Subscribe to event"
self.start_action()
- print "pulse_context_subscribe:", mask, callback
+ print "pulse_context_subscribe:", mask
CONTEXT_SUCCESS = PA_CONTEXT_SUCCESS_CB_T(self.py_context_success)
self.operation = pa_context_subscribe(self.context,