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