From 264fa6165628e675493a7ce0100a7b1488f436a0 Mon Sep 17 00:00:00 2001 From: chrys Date: Wed, 12 Jul 2017 23:35:33 +0200 Subject: [PATCH] fix typo --- src/fenrir/core/commandManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fenrir/core/commandManager.py b/src/fenrir/core/commandManager.py index 68a99e6c..8986dffd 100644 --- a/src/fenrir/core/commandManager.py +++ b/src/fenrir/core/commandManager.py @@ -183,7 +183,7 @@ class commandManager(): try: if self.env['runtime']['helpManager'].isTutorialMode(): self.env['runtime']['debug'].writeDebugOut("Tutorial for command:" + section + "." + command ,debug.debugLevel.INFO) - description = self.getCommandDescription(section, command) + description = self.getCommandDescription(command, section) self.env['runtime']['outputManager'].presentText(description, interrupt=True) else: self.env['runtime']['debug'].writeDebugOut("Executing command:" + section + "." + command ,debug.debugLevel.INFO)