Jingle: fix py2.5 construct
This commit is contained in:
parent
c389921e53
commit
6a6527e1f3
1 changed files with 4 additions and 1 deletions
|
@ -325,7 +325,10 @@ class JingleAudioSession(object):
|
||||||
Codec('speex', clockrate='16000'),
|
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[:]
|
our_l = supported_codecs[:]
|
||||||
out = []
|
out = []
|
||||||
ids = range(128)
|
ids = range(128)
|
||||||
|
|
Loading…
Add table
Reference in a new issue