From 082b26bf46816d3ce9c54a18926aa1076eae9477 Mon Sep 17 00:00:00 2001 From: HomeWorld Date: Sun, 15 Aug 2010 17:11:57 +0300 Subject: [PATCH] Small fix in AboutBox description --- gui/mainFrame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/mainFrame.py b/gui/mainFrame.py index a22d26faf..37ca31d92 100644 --- a/gui/mainFrame.py +++ b/gui/mainFrame.py @@ -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)