summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2018-08-28 20:46:59 +0100
committerJavier Jardón <jjardon@gnome.org>2018-08-28 23:22:00 +0100
commitc6fb5ba71e2be3579ce5d4a512139ee811a04759 (patch)
treeeec9027f93223ca7ecceb3005f00b8b2a099f94e /doc
parent3ae5fd05d0b9b97448d40ba64c528f31f83c2915 (diff)
downloadbuildstream-c6fb5ba71e2be3579ce5d4a512139ee811a04759.tar.gz
Fix E741 warningsjjardon/pycodestyle_fixes
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/bst2html.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/bst2html.py b/doc/bst2html.py
index 0cfb43b5c..eaf25eae8 100755
--- a/doc/bst2html.py
+++ b/doc/bst2html.py
@@ -96,8 +96,8 @@ def _ansi2html_get_styles(palette):
for g in range(24):
i = g + 232
- l = g * 10 + 8
- indexed_style['%s' % i] = ''.join('%02X' % c if 0 <= c <= 255 else None for c in (l, l, l))
+ L = g * 10 + 8
+ indexed_style['%s' % i] = ''.join('%02X' % c if 0 <= c <= 255 else None for c in (L, L, L))
_ANSI2HTML_STYLES[palette] = (regular_style, bold_style, indexed_style)
return _ANSI2HTML_STYLES[palette]