Fix Spelling

This commit is contained in:
Davis Goglin 2016-03-30 17:13:20 -07:00
parent 3fe4589b8b
commit 062282bf47
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ class Config(object):
try:
# First check if it's file like. If it is, pyyaml can load it.
# I'm checking type instead of catching excpetions to keep the
# I'm checking type instead of catching exceptions to keep the
# exception handling simple
if hasattr(config_path, 'read'):
config = yaml.safe_load(config_path)