From b9c10f1f82524cd58a447bdda3956ef9cfc8d701 Mon Sep 17 00:00:00 2001 From: Milan Kolar Date: Thu, 1 Apr 2021 15:50:37 +0200 Subject: [PATCH] change Menu label to variable --- pype/hosts/maya/api/menu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pype/hosts/maya/api/menu.py b/pype/hosts/maya/api/menu.py index cb04399a35..60ae951708 100644 --- a/pype/hosts/maya/api/menu.py +++ b/pype/hosts/maya/api/menu.py @@ -8,7 +8,7 @@ from pype.api import BuildWorkfile import maya.cmds as cmds self = sys.modules[__name__] -self._menu = "OpenPype" +self._menu = os.environ.get("AVALON_LABEL") log = logging.getLogger(__name__)