Skip to content

Commit

Permalink
Fix Aembic extractor parse_options pyblish#49
Browse files Browse the repository at this point in the history
  • Loading branch information
BigRoy committed Feb 25, 2016
1 parent d0ba6ea commit 55b1648
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyblish_magenta/plugins/pipeline/extract_alembic.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def parse_options(cls, options):
if isinstance(value, (list, tuple)):
for entry in value:
job_args.append("-{0} {1}".format(key, entry))
if isinstance(value, bool):
elif isinstance(value, bool):
job_args.append("-{0}".format(key))
else:
job_args.append("-{0} {1}".format(key, value))
Expand Down

1 comment on commit 55b1648

@BigRoy
Copy link
Owner Author

@BigRoy BigRoy commented on 55b1648 Feb 25, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typo in the commit. Aembic should of course be Alembic. Can commit messages like this actually be altered and fixed?

Please sign in to comment.