diff options
author | Andrei Dinu <andrei.adrianx.dinu@intel.com> | 2013-04-03 14:58:47 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-04 14:10:56 +0100 |
commit | ef0ef862c10c0c8187601a2dab45ffe8c6f133e4 (patch) | |
tree | 41183c94d2ca65b5bb0f429cc0c994ed95acd933 /bitbake | |
parent | 4dbdcf946297e58b3e66d961d0efcf6fb395a7be (diff) | |
download | poky-ef0ef862c10c0c8187601a2dab45ffe8c6f133e4.tar.gz |
bitbake: propertydialog adjustments for package.bbclass
After moving the code from packageinfo.bbclass to
package.bbclass, minor adjustments were made to the
parsing of the package items.
(Bitbake rev: 414fe98fe367ba44ea0fd20d8fe1296bcef58ea6)
Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/hig/propertydialog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hig/propertydialog.py b/bitbake/lib/bb/ui/crumbs/hig/propertydialog.py index f4cf9a67d0..1e7f5c95d5 100644 --- a/bitbake/lib/bb/ui/crumbs/hig/propertydialog.py +++ b/bitbake/lib/bb/ui/crumbs/hig/propertydialog.py | |||
@@ -198,7 +198,7 @@ class PropertyDialog(CrumbsDialog): | |||
198 | col1.set_cell_data_func(self.cell1, self.regex_field) | 198 | col1.set_cell_data_func(self.cell1, self.regex_field) |
199 | self.sstatemirrors_tv.append_column(col1) | 199 | self.sstatemirrors_tv.append_column(col1) |
200 | 200 | ||
201 | for items in file_list.split(']]'): | 201 | for items in file_list.split(']'): |
202 | if len(items) > 1: | 202 | if len(items) > 1: |
203 | paths_temp = items.split(":")[0] | 203 | paths_temp = items.split(":")[0] |
204 | paths_binb.append(paths_temp.strip(" ,'")) | 204 | paths_binb.append(paths_temp.strip(" ,'")) |