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
Basically include the output of appleseed.cli --version in the HTML report.
appleseed.cli --version
scripts/rendernode.py already does that:
scripts/rendernode.py
# ------------------------------------------------------------------------------------------------- # Launches appleseed.cli and print appleseed version information. # ------------------------------------------------------------------------------------------------- def print_appleseed_version(args, log): try: p = subprocess.Popen([args.tool_path, "--version", "--system"], stdout=subprocess.PIPE, stderr=subprocess.PIPE) output = p.communicate()[1].split(os.linesep, 1) if p.returncode != 0: log.error("failed to query {0} version (return code: {1}).".format(args.tool_path, p.returncode)) sys.exit(1) for line in output: log.info("{0}".format(line)) except OSError: log.error("failed to query {0} version.".format(args.tool_path)) sys.exit(1)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Basically include the output of
appleseed.cli --version
in the HTML report.scripts/rendernode.py
already does that:The text was updated successfully, but these errors were encountered: