# HG changeset patch # User Goffi # Date 1439676419 -7200 # Node ID 832846fefe8586f4b5d61ef12697a046306b9547 # Parent 2e43eb9d816762d5a0731b0eae14f23bf9ba27f5 plugin text-syntaxes: minor variable renaming diff -r 2e43eb9d8167 -r 832846fefe85 src/plugins/plugin_misc_text_syntaxes.py --- a/src/plugins/plugin_misc_text_syntaxes.py Sun Aug 16 00:06:12 2015 +0200 +++ b/src/plugins/plugin_misc_text_syntaxes.py Sun Aug 16 00:06:59 2015 +0200 @@ -166,7 +166,7 @@ if value == "none": continue cleaned_styles.append((key, value)) - return "; ".join(["%s: %s" % (key, value) for key, value in cleaned_styles]) + return "; ".join(["%s: %s" % (key_, value_) for key_, value_ in cleaned_styles]) if isinstance(xhtml, basestring): xhtml_elt = html.fromstring(xhtml)