fix comparison typo

This commit is contained in:
Mallory Hancock 2019-08-29 09:55:46 -07:00
parent 93cb2784ee
commit 3a93b9e639

View File

@ -40,7 +40,7 @@ def read_conf(config, conf_format):
else:
to_yaml = yaml.load(config.read())
output = schema.load(to_yaml)
elif conf_type = 'toml':
elif conf_type == 'toml':
try:
import toml
except ImportError: