From af42c01aa9fc5d9e4f8000425ff5d0d75248b8dd Mon Sep 17 00:00:00 2001 From: Shreya Date: Mon, 17 May 2021 17:49:12 +0530 Subject: [PATCH] Replace missed out function name --- monkey/monkey_island/cc/environment/environment_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monkey/monkey_island/cc/environment/environment_config.py b/monkey/monkey_island/cc/environment/environment_config.py index 6f4626c9e..5befa202b 100644 --- a/monkey/monkey_island/cc/environment/environment_config.py +++ b/monkey/monkey_island/cc/environment/environment_config.py @@ -25,7 +25,7 @@ class EnvironmentConfig: file_path = os.path.expanduser(file_path) if not Path(file_path).is_file(): - server_config_generator.create_default_config_file(file_path) + server_config_generator.write_default_server_config_to_file(file_path) with open(file_path, "r") as f: config_content = f.read()