www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | LICENSE

commit 3192eec49ec0e6a8da17dfe30f1c94411af406f5
parent 66c7794ea1e2f72fd9d6a9d6613c03888ab3aa9e
Author: Suzanne Soy <ligo@suzanne.soy>
Date:   Tue, 26 Jan 2021 23:29:38 +0000

Rename AppTools.py → ToolCommand.py

Diffstat:
MInitGui.py | 4++--
RAppTools.py -> ToolCommand.py | 0
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 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