Fix typo in variable name

This commit is contained in:
Stein Magnus Jodal 2012-09-08 01:00:56 +02:00
parent 21a85c0898
commit ebead0d0d2

View File

@ -4,12 +4,12 @@ import gobject
import gst
def create_fake_track(label, intial_volume, min_volume, max_volume,
def create_fake_track(label, initial_volume, min_volume, max_volume,
num_channels, flags):
class Track(gst.interfaces.MixerTrack):
def __init__(self):
super(Track, self).__init__()
self.volumes = (intial_volume,) * self.num_channels
self.volumes = (initial_volume,) * self.num_channels
@gobject.property
def label(self):