From d72340f536f46bc127ec0654f3d6675478b1d3df Mon Sep 17 00:00:00 2001 From: Bram Date: Sat, 20 Jul 2019 14:44:23 +0200 Subject: [PATCH] [mod] typo in comment Co-Authored-By: decentral1se --- moulinette/utils/filesystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moulinette/utils/filesystem.py b/moulinette/utils/filesystem.py index 884c7afc..274c9342 100644 --- a/moulinette/utils/filesystem.py +++ b/moulinette/utils/filesystem.py @@ -91,7 +91,7 @@ def read_toml(file_path): # Read file file_content = read_file(file_path) - # Try to load toml to check if it's syntaxically correct + # Try to load toml to check if it's syntactically correct try: loaded_toml = toml.loads(file_content, _dict=OrderedDict) except Exception as e: