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
I am too lazy to do pull request, so, I report this small error this way.
In https://osc.github.io/ood-documentation/master/app-development/tutorials-interactive-apps/add-custom-queue/local-dynamic-list.html, section 4, the code should be ... output, status = Open3.capture2e(cmd) if status.success? queues = output.split("\n").map(&:strip).reject(&:blank?).sort else ... not ... queues = out.split("\n").map(&:strip).reject(&:blank?).sort ...
The text was updated successfully, but these errors were encountered:
Update local-dynamic-list.rst
0ee67c4
Fix for #88
MorganRodgers
No branches or pull requests
I am too lazy to do pull request, so, I report this small error this way.
In https://osc.github.io/ood-documentation/master/app-development/tutorials-interactive-apps/add-custom-queue/local-dynamic-list.html, section 4, the code should be
...
output, status = Open3.capture2e(cmd)
if status.success?
queues = output.split("\n").map(&:strip).reject(&:blank?).sort
else
...
not
...
queues = out.split("\n").map(&:strip).reject(&:blank?).sort
...
The text was updated successfully, but these errors were encountered: