mirror of https://github.com/kivy/kivy.git
Merge pull request #1087 from krivar/patch-3
TYPO FIX: audio/__init__.py
This commit is contained in:
commit
feba2d1e8d
|
@ -56,7 +56,7 @@ class SoundLoader:
|
||||||
for classobj in SoundLoader._classes:
|
for classobj in SoundLoader._classes:
|
||||||
if ext in classobj.extensions():
|
if ext in classobj.extensions():
|
||||||
return classobj(source=filename)
|
return classobj(source=filename)
|
||||||
Logger.warning('Audio: Unable to found a loader for <%s>' %
|
Logger.warning('Audio: Unable to find a loader for <%s>' %
|
||||||
filename)
|
filename)
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue