Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ language: python
python:
- 2.7
- 3.5
- 3.7
- 3.8
install:
- pip install coveralls
script:
Expand Down
3 changes: 2 additions & 1 deletion pyblish/logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,8 @@ def Iterator(plugins, context, state=None):

message = test(**state)
if message:
raise StopIteration("Stopped due to %s" % message)
log.error("Stopped due to %s" % message)
return

instances = instances_by_plugin(context, plugin)
if plugin.__instanceEnabled__:
Expand Down
2 changes: 1 addition & 1 deletion pyblish/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

VERSION_MAJOR = 1
VERSION_MINOR = 8
VERSION_PATCH = 0
VERSION_PATCH = 1

version_info = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)
version = '%i.%i.%i' % version_info
Expand Down