From 40d9c8dbc23eaccb080e5062bf05e1d3e89b509d Mon Sep 17 00:00:00 2001 From: TrevisanGMW Date: Mon, 8 Nov 2021 17:50:12 -0800 Subject: [PATCH] Replaced repeating string with variable --- python-scripts/gt_path_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-scripts/gt_path_manager.py b/python-scripts/gt_path_manager.py index 1f344297..ee83835c 100644 --- a/python-scripts/gt_path_manager.py +++ b/python-scripts/gt_path_manager.py @@ -131,7 +131,7 @@ def __init__(self, parent=maya_main_window()): def create_widgets(self): ''' Create Widgets ''' # Title - self.title_label = QtWidgets.QLabel("GT Path Manager") + self.title_label = QtWidgets.QLabel(script_name) self.title_label.setStyleSheet('background-color: rgb(93, 93, 93); \ border: 0px solid rgb(93, 93, 93); \ color: rgb(255, 255, 255);\