Browse Source

wxGUI: sort contributors by name

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@47757 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 13 years ago
parent
commit
6a0464663d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gui/wxpython/gui_modules/ghelp.py

+ 1 - 1
gui/wxpython/gui_modules/ghelp.py

@@ -705,7 +705,7 @@ class AboutWindow(wx.Frame):
             for item in (_('Name'), _('E-mail'), _('Country'), _('OSGeo_ID')):
                 contribBox.Add(item = wx.StaticText(parent = contribwin, id = wx.ID_ANY,
                                                     label = item))
-            for vals in contribs:
+            for vals in sorted(contribs, key = lambda x: x[0]):
                 for item in vals:
                     contribBox.Add(item = wx.StaticText(parent = contribwin, id = wx.ID_ANY,
                                                         label = item))