Skip to content

Commit

Permalink
Followup 151204d fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Apr 17, 2016
1 parent 151204d commit 972f13e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/GdalUtils.py
Expand Up @@ -86,7 +86,7 @@ def runGdal(commands, progress=None):
progress.setConsoleInfo(line)
loglines.append(line)
except IOError as e:
raise IOError(e.message + u'\nAfter reading {} lines, last lines: {}'.format(len(logines), u'\n'.join(loglines[-10:])))
raise IOError(e.message + u'\nAfter reading {} lines, last lines: {}'.format(len(loglines), u'\n'.join(loglines[-10:])))
ProcessingLog.addToLog(ProcessingLog.LOG_INFO, loglines)
GdalUtils.consoleOutput = loglines

Expand Down

0 comments on commit 972f13e

Please sign in to comment.