Skip to content

Commit d42d202

Browse files
committed
Fixed error message
1 parent a74c386 commit d42d202

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

SU2_PY/SU2/io/config.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,8 @@ def read_config(filename):
351351
while(line[0].endswith('\\') or len(line.split('\\')) > 1):
352352
tmp_line = input_file.readline()
353353
tmp_line = tmp_line.strip()
354-
assert len(tmp_line.split('=')) <= 1, ('Statement after line continuation parameter in config file %s' % tmp_line)
354+
assert len(tmp_line.split('=')) <= 1, ('Statement found after line '
355+
'continuation character in config file %s' % tmp_line)
355356
if (not tmp_line.startswith('%')):
356357
line = line.split('\\')[0]
357358
line += ' ' + tmp_line

0 commit comments

Comments
 (0)