Update commandManager.py

This commit is contained in:
chrys87 2016-08-30 15:47:10 +02:00 committed by GitHub
parent da97b14b12
commit 6b2b58bc74

View File

@ -31,7 +31,7 @@ class commandManager():
return environment
def executeTriggerCommands(self, environment, trigger):
if environment['generalInformation ']['suspend']:
if environment['generalInformation']['suspend']:
return environment
for cmd in sorted(environment['commands'][trigger]):
try:
@ -44,7 +44,7 @@ class commandManager():
return environment
def executeCommand(self, environment, currCommand, section = 'commands'):
if environment['generalInformation ']['suspend']:
if environment['generalInformation']['suspend']:
return environment
if self.isCommandDefined(environment):
try: