[mod] typo in comment

Co-Authored-By: decentral1se <lukewm@riseup.net>
This commit is contained in:
Bram 2019-07-20 14:44:23 +02:00 committed by GitHub
parent 9466c71a45
commit d72340f536
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: