Skip to content

Commit 2e4bdea

Browse files
committed
Fix error
1 parent 3ce5b3d commit 2e4bdea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mkdocs_include_markdown_plugin/directive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def _maybe_arguments_iter(arguments_string: str) -> Iterable[str]:
147147
if ch in string.whitespace:
148148
current_value = new_current_value[::-1]
149149
break
150-
new_current_value += c
150+
new_current_value += ch
151151
yield current_value
152152
current_value = ''
153153
opening_argument = True

0 commit comments

Comments
 (0)