[GRASS-SVN] r54768 - grass/trunk/lib/python/pygrass/raster
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Jan 25 05:24:14 PST 2013
Author: zarch
Date: 2013-01-25 05:24:13 -0800 (Fri, 25 Jan 2013)
New Revision: 54768
Modified:
grass/trunk/lib/python/pygrass/raster/__init__.py
Log:
Fix Attribute error on RasterNumpy class
Modified: grass/trunk/lib/python/pygrass/raster/__init__.py
===================================================================
--- grass/trunk/lib/python/pygrass/raster/__init__.py 2013-01-25 07:52:22 UTC (rev 54767)
+++ grass/trunk/lib/python/pygrass/raster/__init__.py 2013-01-25 13:24:13 UTC (rev 54768)
@@ -548,7 +548,7 @@
def __init__(self, name, *args, **kargs):
## Private attribute `_fd` that return the file descriptor of the map
- #self._fd = None
+ self._fd = None
rows, cols = self.rows, self.cols
RasterAbstractBase.__init__(self, name)
self._rows, self._cols = rows, cols
More information about the grass-commit
mailing list