Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Engine/CLArgs.cpp: allow dot in writer name #840

Merged
merged 1 commit into from
Oct 27, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Engine/CLArgs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,7 @@ CLArgsPrivate::parse()


//Check that the name is conform to a Python acceptable script name
std::string pythonConform = NATRON_PYTHON_NAMESPACE::makeNameScriptFriendly( it->toStdString() );
std::string pythonConform = NATRON_PYTHON_NAMESPACE::makeNameScriptFriendlyWithDots( it->toStdString() );
if (it->toStdString() != pythonConform) {
std::cout << tr("The name of the Write node specified is not valid: it cannot contain non alpha-numerical "
"characters and must not start with a digit.").toStdString() << std::endl;
Expand Down