Browse Source

pygrass: use raster3d instead of raster3D for module family/class (see also https://trac.osgeo.org/grass/ticket/2409, https://trac.osgeo.org/grass/changeset/64109 and https://trac.osgeo.org/grass/changeset/64055)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@64154 15284696-431f-4ddb-bdfa-cd5b030d7da7
Vaclav Petras 10 years ago
parent
commit
ac595fcf42
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lib/python/pygrass/modules/shortcuts.py

+ 2 - 2
lib/python/pygrass/modules/shortcuts.py

@@ -56,7 +56,7 @@ class MetaModule(object):
 #  m.*	miscellaneous commands
 #  ps.*	postscript commands
 #  r.*	raster commands
-#  r3.*	raster3D commands
+#  r3.*	3D raster commands
 #  t.*	temporal commands
 #  v.*	vector commands
 
@@ -67,6 +67,6 @@ imagery = MetaModule('i')
 miscellaneous = MetaModule('m')
 postscript = MetaModule('ps')
 raster = MetaModule('r')
-raster3D = MetaModule('r3')
+raster3d = MetaModule('r3')
 temporal = MetaModule('t')
 vector = MetaModule('v')