summaryrefslogtreecommitdiff
path: root/ftt-docgen
diff options
context:
space:
mode:
Diffstat (limited to 'ftt-docgen')
-rwxr-xr-xftt-docgen2
1 files changed, 1 insertions, 1 deletions
diff --git a/ftt-docgen b/ftt-docgen
index 89ed110..f8891c5 100755
--- a/ftt-docgen
+++ b/ftt-docgen
@@ -29,7 +29,7 @@ def format_scenario_step(bind, line, prev_keyword):
for b in bind:
if real_keyword not in b:
continue
- m = re.match(b[real_keyword], line, re.I)
+ m = re.match(b[real_keyword.lower()], line, re.I)
if m and m.end() == len(line):
debug(' found binding: {!r}'.format(b))
n = len(m.groups())