Jingle: fix py2.5 construct

This commit is contained in:
Tomasz Melcer 2007-08-19 20:01:38 +00:00
parent c389921e53
commit 6a6527e1f3
1 changed files with 4 additions and 1 deletions

View File

@ -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)