From 6b9ac7a254ea267feca7f4d78227ae0a34424097 Mon Sep 17 00:00:00 2001 From: TheOrangeOne Date: Wed, 24 Aug 2016 11:05:25 +0100 Subject: [PATCH] use double quotes for metatags --- plugins/metatags.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/metatags.py b/plugins/metatags.py index 5d2d4f0..eca0585 100644 --- a/plugins/metatags.py +++ b/plugins/metatags.py @@ -71,21 +71,21 @@ def tag_item(instance): if not value: continue metatags.append( - "".format(tag, value) + "".format(tag, value) ) for tag, value in get_og_tags(instance).items(): if not value: continue metatags.append( - "".format(tag, value) + "".format(tag, value) ) for tag, value in get_schema_tags(instance).items(): if not value: continue metatags.append( - "".format(tag, value) + "".format(tag, value) ) general_tags = get_general_tags(instance).items() @@ -97,7 +97,7 @@ def tag_item(instance): if not value: continue metatags.append( - "".format(tag, value) + "".format(tag, value) ) instance.metatags = '\n'.join(metatags)