Comment on page
Category
Output | Method |
| __init__(name) |
import pyblish.api
class OpenInExplorer(pyblish.api.Action):
label = "Open in Explorer"
on = "failed" plug-in
icon = "hand-o-up"
def process(self, context):
import subprocess
subprocess.call("start .", shell=True)