From bf0f1368bd8c0b37d56a10fe3e6f76d4ba5dd091 Mon Sep 17 00:00:00 2001 From: emrekgn Date: Thu, 4 Aug 2016 18:11:03 +0300 Subject: [PATCH] bug fix for plugin installation --- opt/ahenk/base/execution/ExecutionManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opt/ahenk/base/execution/ExecutionManager.py b/opt/ahenk/base/execution/ExecutionManager.py index 00856bd..9c2dd45 100644 --- a/opt/ahenk/base/execution/ExecutionManager.py +++ b/opt/ahenk/base/execution/ExecutionManager.py @@ -86,7 +86,7 @@ class ExecutionManager(object): transfer_manager.transporter.connect() file_name = transfer_manager.transporter.get_file() transfer_manager.transporter.disconnect() - downloaded_file = Util.read_file(System.Ahenk.received_dir_path() + file_name) + downloaded_file = System.Ahenk.received_dir_path() + file_name except Exception as e: self.logger.error( '[ExecutionManager] Plugin package could not fetch. Error Message: {}.'.format(str(e)))