From 9bac7aba0e675506fae13aae2bb2b3c774206a0b Mon Sep 17 00:00:00 2001 From: Jakub Trllo Date: Tue, 18 Jun 2019 14:20:53 +0200 Subject: [PATCH] added repre name to read node name --- pype/plugins/nuke/load/load_mov.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pype/plugins/nuke/load/load_mov.py b/pype/plugins/nuke/load/load_mov.py index 33b4c019ea..3723b57fa4 100644 --- a/pype/plugins/nuke/load/load_mov.py +++ b/pype/plugins/nuke/load/load_mov.py @@ -114,7 +114,9 @@ class LoadMov(api.Loader): file = self.fname.replace("\\", "/") log.info("file: {}\n".format(self.fname)) - read_name = "Read_" + context["representation"]["context"]["subset"] + read_name = "Read" + read_name += '_' + context["representation"]["context"]["subset"] + read_name += '_' + context["representation"]["name"] # Create the Loader with the filename path set with viewer_update_and_undo_stop():