Remove unsued variable

This commit is contained in:
Davis Goglin 2016-03-16 14:28:53 -07:00 committed by Davis Goglin
parent 7a58109928
commit 8e44c5126e
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ class Config(object):
raise exceptions.ConfigNotFoundError('Couldn\'t read config at {config_path}'.format(
config_path=str(config_path),
))
except yaml.YAMLError as e:
except yaml.YAMLError:
raise exceptions.ConfigSyntaxError('Error parsing YAML')
if 'printer' in config: