aboutsummaryrefslogtreecommitdiffstats
path: root/lib/toaster/toastergui/views.py
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:17 +0100
commit263eae9d2d7acf62240320765c80f60f3553f620 (patch)
tree4542e63f99a119d85708b55d2d30fc8332bb099b /lib/toaster/toastergui/views.py
parentc8495c38b892d22a1f85286f34b0fdbc17febf78 (diff)
downloadbitbake-263eae9d2d7acf62240320765c80f60f3553f620.tar.gz
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. Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com>
Diffstat (limited to 'lib/toaster/toastergui/views.py')
-rw-r--r--lib/toaster/toastergui/views.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/toaster/toastergui/views.py b/lib/toaster/toastergui/views.py
index 6413c80ed..6028d4d77 100644
--- a/lib/toaster/toastergui/views.py
+++ b/lib/toaster/toastergui/views.py
@@ -1111,13 +1111,13 @@ def configvars(request, build_id):
'search_term':search_term,
# Specifies the display of columns for the table, appearance in "Edit columns" box, toggling default show/hide, and specifying filters for columns
'tablecols' : [
- {'name': 'Variable ',
+ {'name': 'Variable',
'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",
'dclass' : "span3",
'orderfield': _get_toggle_order(request, "variable_name"),
'ordericon':_get_toggle_order_icon(request, "variable_name"),
},
- {'name': 'Value ',
+ {'name': 'Value',
'qhelp': "The value assigned to the variable",
'dclass': "span4",
},
@@ -1137,7 +1137,7 @@ def configvars(request, build_id):
]
},
},
- {'name': 'Description ',
+ {'name': 'Description',
'qhelp': "A brief explanation of the variable",
'clclass': 'description', 'hidden' : 0,
'dclass': "span5",