Skip to content

Commit b8ca00a

Browse files
pekkaklarckyanne
authored andcommitted
Fix for loops with non-ASCII spaces in separator robotframework#3121
1 parent 41e9cd7 commit b8ca00a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/robot/parsing/nodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class ForLoop(Node):
109109

110110
def __init__(self, variables, flavor, values, body=None):
111111
self.variables = variables
112-
self.flavor = flavor
112+
self.flavor = normalize_whitespace(flavor)
113113
self.values = values
114114
self.body = body or []
115115

0 commit comments

Comments
 (0)