[tuxdroid-svn] r6065 - software_suite_v3/smart-core/smart-api/python/trunk/tuxisalive/api/tuxdroid
Status: Beta
Brought to you by:
ks156
From: remi <c2m...@c2...> - 2010-02-15 15:11:44
|
Author: remi Date: 2010-02-15 16:10:50 +0100 (Mon, 15 Feb 2010) New Revision: 6065 Modified: software_suite_v3/smart-core/smart-api/python/trunk/tuxisalive/api/tuxdroid/SoundFlash.py Log: *Forgot an argument in this method Modified: software_suite_v3/smart-core/smart-api/python/trunk/tuxisalive/api/tuxdroid/SoundFlash.py =================================================================== --- software_suite_v3/smart-core/smart-api/python/trunk/tuxisalive/api/tuxdroid/SoundFlash.py 2010-02-11 15:48:19 UTC (rev 6064) +++ software_suite_v3/smart-core/smart-api/python/trunk/tuxisalive/api/tuxdroid/SoundFlash.py 2010-02-15 15:10:50 UTC (rev 6065) @@ -88,7 +88,7 @@ return SOUND_REFLASH_ERROR_PARAMETERS tracks = "" for wav in wavList: - if not self._checkObjectType(wav, "str"): + if not self._checkObjectType('wav', wav, "str"): return SOUND_REFLASH_ERROR_PARAMETERS tracks = "%s%s|" % (tracks, wav) tracks = tracks[:-1] |