Skip to content

Commit

Permalink
Follow up 647bd25
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Dec 16, 2017
1 parent 5a34558 commit 252f080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/core/ProcessingLog.py
Expand Up @@ -114,7 +114,7 @@ def saveLog(fileName):
entries = ProcessingLog.getLogEntries()
with codecs.open(fileName, 'w', encoding='utf-8') as f:
for entry in entries:
f.write('ALGORITHM{}{}{}{}\n'.format(LOG_SEPARATOR, entry.date, LOG_SEPARATORentry.text))
f.write('ALGORITHM{}{}{}{}\n'.format(LOG_SEPARATOR, entry.date, LOG_SEPARATOR, entry.text))

@staticmethod
def tr(string, context=''):
Expand Down

0 comments on commit 252f080

Please sign in to comment.