Jingle: fix py2.5 construct
This commit is contained in:
parent
c389921e53
commit
6a6527e1f3
|
@ -325,7 +325,10 @@ class JingleAudioSession(object):
|
|||
Codec('speex', clockrate='16000'),
|
||||
]
|
||||
|
||||
other_l = other if other is not None else []
|
||||
if other is not None:
|
||||
other_l = other
|
||||
else:
|
||||
other_l = []
|
||||
our_l = supported_codecs[:]
|
||||
out = []
|
||||
ids = range(128)
|
||||
|
|
Loading…
Reference in New Issue