From 3192eec49ec0e6a8da17dfe30f1c94411af406f5 Mon Sep 17 00:00:00 2001 From: Suzanne Soy Date: Tue, 26 Jan 2021 23:29:38 +0000 Subject: [PATCH] =?UTF-8?q?Rename=20AppTools.py=20=E2=86=92=20ToolCommand.?= =?UTF-8?q?py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- InitGui.py | 4 ++-- AppTools.py => ToolCommand.py | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename AppTools.py => ToolCommand.py (100%) diff --git a/InitGui.py b/InitGui.py index 42a7ffa..6d70a94 100644 --- a/InitGui.py +++ b/InitGui.py @@ -54,11 +54,11 @@ class XternalAppsWorkbench(Workbench): def Initialize(self): # Load commands import AppCommand - import AppTools + import ToolCommand import Embed Embed.ExternalApps() AppCommand.createCommands(self.appName) - AppTools.createCommands(self.appName) + ToolCommand.createCommands(self.appName) # List of commands for this workbench self.list = ['ExternalAppsOpen' + self.appName + 'Command'] \ diff --git a/AppTools.py b/ToolCommand.py similarity index 100% rename from AppTools.py rename to ToolCommand.py