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

Typo in Astra.cfg #206

Open
BrendanWooAdmetal opened this issue Jun 18, 2024 · 0 comments
Open

Typo in Astra.cfg #206

BrendanWooAdmetal opened this issue Jun 18, 2024 · 0 comments

Comments

@BrendanWooAdmetal
Copy link

BrendanWooAdmetal commented Jun 18, 2024

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant