Fixed a little demo problem

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12389 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2001-11-13 00:32:39 +00:00
parent 8a7f3379ba
commit 0d3859bf1e

View File

@@ -75,8 +75,12 @@ class MimeTypesTestPanel(wxPanel):
self.GetExtensionsTxt().SetValue(str(ft.GetExtensions()))
self.GetDescriptionTxt().SetValue(str(ft.GetDescription()))
ext = ft.GetExtensions()[0]
if ext[0] == ".": ext = ext[1:]
extList = ft.GetExtensions()
if extList:
ext = extList[0]
if ext[0] == ".": ext = ext[1:]
else:
ext = ""
filename = "SPAM" + "." + ext
mime = ft.GetMimeType() or ""
cmd = ft.GetOpenCommand(filename, mime)