We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
While examining the code, I noticed the following typo on line 89 of Astra.cfg. This could cause problems when using dynamic reconfigure.
In any event, an extra " results in mismatched braces.
"
gen.add("edited_video_modes", str_t, 0, "edited video mode", output_mode_enum.replace("'", "\\\""))
Should be changed to:
gen.add("edited_video_modes", str_t, 0, "edited video mode", output_mode_enum.replace("'", "\\\"))
The removal of the final " should easily resolve the issue.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
While examining the code, I noticed the following typo on line 89 of Astra.cfg.
This could cause problems when using dynamic reconfigure.
In any event, an extra
"
results in mismatched braces.Should be changed to:
The removal of the final
"
should easily resolve the issue.The text was updated successfully, but these errors were encountered: