Skip to content
Open
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: 1 addition & 1 deletion pyblish/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -1265,7 +1265,7 @@ def discover(type=None, regex=None, paths=None):

try:
with open(abspath) as f:
six.exec_(f.read(), module.__dict__)
six.exec_(f.read().replace('\r', ''), module.__dict__)

# Store reference to original module, to avoid
# garbage collection from collecting it's global
Expand Down