commented out offending row

This commit is contained in:
antirotor 2018-12-15 12:43:43 +01:00
parent 83224fa85c
commit 7a7c1e1d90
No known key found for this signature in database
GPG key ID: 8A29C663C672C2B7

View file

@ -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}