From 062282bf475fccadf3be14667b3b7a013f542d12 Mon Sep 17 00:00:00 2001 From: Davis Goglin Date: Wed, 30 Mar 2016 17:13:20 -0700 Subject: [PATCH] Fix Spelling --- escpos/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/escpos/config.py b/escpos/config.py index a598393..8d5b915 100644 --- a/escpos/config.py +++ b/escpos/config.py @@ -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)