[GRASS-SVN] r63351 - grass/trunk/gui/wxpython/vdigit
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Dec 3 02:01:49 PST 2014
Author: mmetz
Date: 2014-12-03 02:01:49 -0800 (Wed, 03 Dec 2014)
New Revision: 63351
Modified:
grass/trunk/gui/wxpython/vdigit/wxdigit.py
Log:
wx vdigit: fix r63341
Modified: grass/trunk/gui/wxpython/vdigit/wxdigit.py
===================================================================
--- grass/trunk/gui/wxpython/vdigit/wxdigit.py 2014-12-03 10:00:54 UTC (rev 63350)
+++ grass/trunk/gui/wxpython/vdigit/wxdigit.py 2014-12-03 10:01:49 UTC (rev 63351)
@@ -1555,7 +1555,7 @@
if changesetLast < 0:
return changesetLast
- elif level < 0 and self.changesetCurrent > changesetLast:
+ if level < 0 and self.changesetCurrent > changesetLast:
self.changesetCurrent = changesetLast
elif level == 0:
# 0 -> undo all
More information about the grass-commit
mailing list