Skip to content

Commit 4e2dd58

Browse files
committedSep 14, 2016
fix indentation
1 parent e2c7991 commit 4e2dd58

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎python/plugins/processing/algs/gdal/GdalAlgorithm.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ def processAlgorithm(self, progress):
6060
c = c.replace(layer.source(), exported)
6161
if os.path.isfile(layer.source()):
6262
fileName = os.path.splitext(os.path.split(layer.source())[1])[0]
63-
c = re.sub('[\s]{}[\s]'.format(fileName), ' ' + exportedFileName + ' ', c)
64-
c = re.sub('[\s]{}'.format(fileName), ' ' + exportedFileName, c)
65-
c = re.sub('["\']{}["\']'.format(fileName), "'" + exportedFileName + "'", c)
63+
c = re.sub('[\s]{}[\s]'.format(fileName), ' ' + exportedFileName + ' ', c)
64+
c = re.sub('[\s]{}'.format(fileName), ' ' + exportedFileName, c)
65+
c = re.sub('["\']{}["\']'.format(fileName), "'" + exportedFileName + "'", c)
6666

6767
commands[i] = c
6868
GdalUtils.runGdal(commands, progress)

0 commit comments

Comments
 (0)
Please sign in to comment.