Head push

This commit is contained in:
Tim Bentley 2011-04-30 18:36:28 +01:00
commit 54e1674803
2 changed files with 1 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

View File

@ -291,7 +291,7 @@ class PresentationMediaItem(MediaManagerItem):
"supports" the extension. If none found, then look for a controller
which "also supports" it instead.
"""
filetype = os.path.splitext(filename)[1]
filetype = os.path.splitext(filename)[1][1:]
if not filetype:
return None
for controller in self.controllers: