From 7a7c1e1d901cb29e94efb1bc2a67abfb271aecd7 Mon Sep 17 00:00:00 2001 From: antirotor Date: Sat, 15 Dec 2018 12:43:43 +0100 Subject: [PATCH] commented out offending row --- pype/lib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pype/lib.py b/pype/lib.py index b66c83cd7c..fc68e395bd 100644 --- a/pype/lib.py +++ b/pype/lib.py @@ -109,8 +109,8 @@ def update_task_from_path(path): # Find the changes between current Session and the path's context. current = { "asset": avalon.api.Session["AVALON_ASSET"], - "task": avalon.api.Session["AVALON_TASK"], - "app": avalon.api.Session["AVALON_APP"] + "task": avalon.api.Session["AVALON_TASK"] + # "app": avalon.api.Session["AVALON_APP"] } changes = {key: context[key] for key, current_value in current.items() if context[key] != current_value}