Skip to content

Commit 77fa54e

Browse files
Add dash to list of invalid characters (#209)
1 parent 9da5c8d commit 77fa54e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/fprime/util/cookiecutter_wrapper.py

+1
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,7 @@ def is_valid_name(word: str):
333333
"`",
334334
"|",
335335
"=",
336+
"-",
336337
]
337338
for char in invalid_characters:
338339
if isinstance(word, str) and char in word:

0 commit comments

Comments
 (0)