summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2014-03-16 14:21:55 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-04-01 10:22:42 +0100
commita1e6fb2fcfc768755c39c2e1f156f0bedb88b592 (patch)
tree9de8028525d1f147b9aff5ed352ce6ed9c132050 /bitbake/lib/toaster
parent3719ecfc22f59b5af1e951fea2632a3cd325bfb6 (diff)
downloadpoky-a1e6fb2fcfc768755c39c2e1f156f0bedb88b592.tar.gz
bitbake: toaster: Remove trailing spaces from 'name'
Remove all trailing spaces from 'name' because they show up in the filter headings, which I find incredibly annoying. (Bitbake rev: 263eae9d2d7acf62240320765c80f60f3553f620) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster')
-rw-r--r--bitbake/lib/toaster/toastergui/views.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py
index 6413c80ed9..6028d4d775 100644
--- a/bitbake/lib/toaster/toastergui/views.py
+++ b/bitbake/lib/toaster/toastergui/views.py
@@ -1111,13 +1111,13 @@ def configvars(request, build_id):
1111 'search_term':search_term, 1111 'search_term':search_term,
1112 # Specifies the display of columns for the table, appearance in "Edit columns" box, toggling default show/hide, and specifying filters for columns 1112 # Specifies the display of columns for the table, appearance in "Edit columns" box, toggling default show/hide, and specifying filters for columns
1113 'tablecols' : [ 1113 'tablecols' : [
1114 {'name': 'Variable ', 1114 {'name': 'Variable',
1115 'qhelp': "BitBake is a generic task executor that considers a list of tasks with dependencies and handles metadata that consists of variables in a certain format that get passed to the tasks", 1115 'qhelp': "BitBake is a generic task executor that considers a list of tasks with dependencies and handles metadata that consists of variables in a certain format that get passed to the tasks",
1116 'dclass' : "span3", 1116 'dclass' : "span3",
1117 'orderfield': _get_toggle_order(request, "variable_name"), 1117 'orderfield': _get_toggle_order(request, "variable_name"),
1118 'ordericon':_get_toggle_order_icon(request, "variable_name"), 1118 'ordericon':_get_toggle_order_icon(request, "variable_name"),
1119 }, 1119 },
1120 {'name': 'Value ', 1120 {'name': 'Value',
1121 'qhelp': "The value assigned to the variable", 1121 'qhelp': "The value assigned to the variable",
1122 'dclass': "span4", 1122 'dclass': "span4",
1123 }, 1123 },
@@ -1137,7 +1137,7 @@ def configvars(request, build_id):
1137 ] 1137 ]
1138 }, 1138 },
1139 }, 1139 },
1140 {'name': 'Description ', 1140 {'name': 'Description',
1141 'qhelp': "A brief explanation of the variable", 1141 'qhelp': "A brief explanation of the variable",
1142 'clclass': 'description', 'hidden' : 0, 1142 'clclass': 'description', 'hidden' : 0,
1143 'dclass': "span5", 1143 'dclass': "span5",