From ff30179b4dd5af6bf5db628332bbdfa2c28eefdf Mon Sep 17 00:00:00 2001 From: Ian Weller Date: Sun, 9 Nov 2008 11:38:56 -0600 Subject: PEP 8 check --- fedora_business_cards/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fedora_business_cards/config.py b/fedora_business_cards/config.py index b88d6f2..9bada86 100644 --- a/fedora_business_cards/config.py +++ b/fedora_business_cards/config.py @@ -35,7 +35,8 @@ def available_templates(config): templates.read(templates_dir+"/templates.ini") filelist = os.listdir(templates_dir) for section in templates.sections(): - if templates.options(section) == ["humandesc", "front", "back", "type"]: + if templates.options(section) == ["humandesc", "front", "back", + "type"]: if templates.get(section, "front") in filelist: if templates.get(section, "back") in filelist: # only SVG templates are currently supported -- cgit