[GRASS-SVN] r35798 - grass/trunk/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Feb 7 17:34:44 EST 2009


Author: cmbarton
Date: 2009-02-07 17:34:44 -0500 (Sat, 07 Feb 2009)
New Revision: 35798

Modified:
   grass/trunk/gui/wxpython/gui_modules/preferences.py
Log:
Fix broken mapset access dialog

Modified: grass/trunk/gui/wxpython/gui_modules/preferences.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/preferences.py	2009-02-07 22:31:42 UTC (rev 35797)
+++ grass/trunk/gui/wxpython/gui_modules/preferences.py	2009-02-07 22:34:44 UTC (rev 35798)
@@ -1793,25 +1793,25 @@
 
         ret = grass.read_command('g.mapsets',
                                  flags = 'l')
-        print ret
+        ret = ret.strip(' \n')
 
         mapsets = []
         if ret:
-            mapsets = ret.splitlines()
+            mapsets = ret.split()
         
         for mapset in mapsets:
             index = self.InsertStringItem(sys.maxint, mapset)
             mapsetPath = os.path.join(locationPath,
                                       mapset)
             stat_info = os.stat(mapsetPath)
-	    if os.name in ('posix', 'mac'):
-                self.SetStringItem(index, 1, "%s" % pwd.getpwuid(stat_info.st_uid)[0])
-                # FIXME: get group name
-                self.SetStringItem(index, 2, "%-8s" % stat_info.st_gid) 
-	    else:
-                # FIXME: no pwd under MS Windows (owner: 0, group: 0)
-                self.SetStringItem(index, 1, "%-8s" % stat_info.st_uid)
-                self.SetStringItem(index, 2, "%-8s" % stat_info.st_gid)
+        if os.name in ('posix', 'mac'):
+            self.SetStringItem(index, 1, "%s" % pwd.getpwuid(stat_info.st_uid)[0])
+            # FIXME: get group name
+            self.SetStringItem(index, 2, "%-8s" % stat_info.st_gid) 
+        else:
+            # FIXME: no pwd under MS Windows (owner: 0, group: 0)
+            self.SetStringItem(index, 1, "%-8s" % stat_info.st_uid)
+            self.SetStringItem(index, 2, "%-8s" % stat_info.st_gid)
                 
         self.SetColumnWidth(col=0, width=wx.LIST_AUTOSIZE)
         self.SetColumnWidth(col=1, width=wx.LIST_AUTOSIZE)



More information about the grass-commit mailing list