Small fix in AboutBox description
This commit is contained in:
@@ -58,7 +58,7 @@ class MainFrame(wx.Frame):
|
||||
info = wx.AboutDialogInfo()
|
||||
info.Name = "pyfa"
|
||||
info.Version = aboutData.versionString
|
||||
info.Description = wordwrap(aboutData.description + "\n\n\nDevelopers: " + aboutData.developers + "\nLicense: " + aboutData.license + " see included " + aboutData.licenseLocation,
|
||||
info.Description = wordwrap(aboutData.description + "\n\n\nDevelopers: " + ",".join(aboutData.developers) + "\nLicense: " + aboutData.license + " see included " + aboutData.licenseLocation,
|
||||
350, wx.ClientDC(self))
|
||||
info.WebSite = ("http://pyfa.sourceforge.net/", "pyfa home page")
|
||||
wx.AboutBox(info)
|
||||
|
||||
Reference in New Issue
Block a user