diff options
author | Ross Burton <ross.burton@intel.com> | 2013-08-05 15:39:47 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-06 13:02:27 +0100 |
commit | 89f42c9dcb8cc0ffa4e22a2d6a2af20a4d875115 (patch) | |
tree | 8b63e69deca69a22647b0f4b748e83168b8ea397 /bitbake/lib/bb/ui/depexp.py | |
parent | 44db452d8ffcbb46bcaee8cc379b4a27b3ca6849 (diff) | |
download | poky-89f42c9dcb8cc0ffa4e22a2d6a2af20a4d875115.tar.gz |
bitbake: depexp: fix typo in variable name
(Bitbake rev: e3b8585738abea96a9fd1d1204731004a35e0bc9)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui/depexp.py')
-rw-r--r-- | bitbake/lib/bb/ui/depexp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/depexp.py b/bitbake/lib/bb/ui/depexp.py index 03ed823261..cbda6d5afe 100644 --- a/bitbake/lib/bb/ui/depexp.py +++ b/bitbake/lib/bb/ui/depexp.py | |||
@@ -154,7 +154,7 @@ class DepExplorer(gtk.Window): | |||
154 | 154 | ||
155 | def on_cursor_changed(self, selection): | 155 | def on_cursor_changed(self, selection): |
156 | (model, it) = selection.get_selected() | 156 | (model, it) = selection.get_selected() |
157 | if iter is None: | 157 | if it is None: |
158 | current_package = None | 158 | current_package = None |
159 | else: | 159 | else: |
160 | current_package = model.get_value(it, COL_PKG_NAME) | 160 | current_package = model.get_value(it, COL_PKG_NAME) |