Skip to content

Commit d97a5e3

Browse files
committedJan 13, 2016
Fix failing indentation test
1 parent f639d1e commit d97a5e3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎python/plugins/fTools/tools/doSimplify.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,9 @@ def accept(self):
112112
res = QMessageBox.warning(self, self.tr("Warning"),
113113
self.tr(
114114
"Currently QGIS doesn't allow simultaneous access from "
115-
"different threads to the same datasource. Make sure your layer's "
116-
"attribute tables are closed. Continue?"),
117-
QMessageBox.Yes | QMessageBox.No)
115+
"different threads to the same datasource. Make sure your layer's "
116+
"attribute tables are closed. Continue?"),
117+
QMessageBox.Yes | QMessageBox.No)
118118
if res == QMessageBox.No:
119119
self.btnOk.setEnabled(False)
120120
return

‎python/plugins/processing/algs/grass/nviz.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ def getDefaultCellsize(self):
160160
else:
161161
layer = dataobjects.getObjectFromUri(param.value)
162162
cellsize = max(cellsize, (layer.extent().xMaximum()
163-
- layer.extent().xMinimum())
163+
- layer.extent().xMinimum())
164164
/ layer.width())
165165
elif isinstance(param, ParameterMultipleInput):
166166

‎scripts/verify-indentation.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ do
3838

3939
echo "Checking $f" >>/tmp/ctest-important.log
4040
case "$f" in
41-
src/core/gps/qextserialport/*|src/plugins/dxf2shp_converter/dxflib/src/*|src/plugins/globe/osgEarthQt/*|src/plugins/globe/osgEarthUtil/*)
41+
src/core/gps/qextserialport/*|src/plugins/dxf2shp_converter/dxflib/src/*|src/plugins/globe/osgEarthQt/*|src/plugins/globe/osgEarthUtil/*|scripts/customwidget_template*)
4242
echo "$f skipped"
4343
continue
4444
;;

0 commit comments

Comments
 (0)
Please sign in to comment.