Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #823 from pypeclub/hotfix/nuke-read-node-from-write
Browse files Browse the repository at this point in the history
respecting space in path
  • Loading branch information
mkolar authored Dec 16, 2020
2 parents 25d2241 + c55cbbc commit 27715c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup/nuke/nuke_path/write_to_read.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def evaluate_filepath_new(k_value, k_eval, project_dir, first_frame):


def create_read_node(ndata, comp_start):
read = nuke.createNode('Read', 'file ' + ndata['filepath'])
read = nuke.createNode('Read', 'file "' + ndata['filepath'] + '"')
read.knob('colorspace').setValue(int(ndata['colorspace']))
read.knob('raw').setValue(ndata['rawdata'])
read.knob('first').setValue(int(ndata['firstframe']))
Expand Down

0 comments on commit 27715c0

Please sign in to comment.