fix comparison typo

pull/74/head
Mallory Hancock 2019-08-29 09:55:46 -07:00
parent 93cb2784ee
commit 3a93b9e639
1 changed files with 1 additions and 1 deletions

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: