Replace missed out function name

This commit is contained in:
Shreya 2021-05-17 17:49:12 +05:30
parent d8927a5c55
commit af42c01aa9
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ class EnvironmentConfig:
file_path = os.path.expanduser(file_path) file_path = os.path.expanduser(file_path)
if not Path(file_path).is_file(): 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: with open(file_path, "r") as f:
config_content = f.read() config_content = f.read()