From 9590f6a089c779d2cc29519c1c8af3f98868abf6 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Mon, 5 Aug 2013 15:39:47 +0000 Subject: [PATCH] bitbake: depexp: fix typo in variable name (Bitbake rev: e3b8585738abea96a9fd1d1204731004a35e0bc9) Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/depexp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/bb/ui/depexp.py b/bitbake/lib/bb/ui/depexp.py index 03ed823..cbda6d5 100644 --- a/bitbake/lib/bb/ui/depexp.py +++ b/bitbake/lib/bb/ui/depexp.py @@ -154,7 +154,7 @@ class DepExplorer(gtk.Window): def on_cursor_changed(self, selection): (model, it) = selection.get_selected() - if iter is None: + if it is None: current_package = None else: current_package = model.get_value(it, COL_PKG_NAME) -- 2.7.4