Skip to content

Commit 252f080

Browse files
committedDec 16, 2017
Follow up 647bd25
1 parent 5a34558 commit 252f080

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/core/ProcessingLog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def saveLog(fileName):
114114
entries = ProcessingLog.getLogEntries()
115115
with codecs.open(fileName, 'w', encoding='utf-8') as f:
116116
for entry in entries:
117-
f.write('ALGORITHM{}{}{}{}\n'.format(LOG_SEPARATOR, entry.date, LOG_SEPARATORentry.text))
117+
f.write('ALGORITHM{}{}{}{}\n'.format(LOG_SEPARATOR, entry.date, LOG_SEPARATOR, entry.text))
118118

119119
@staticmethod
120120
def tr(string, context=''):

0 commit comments

Comments
 (0)
Please sign in to comment.