From e3b8585738abea96a9fd1d1204731004a35e0bc9 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Mon, 5 Aug 2013 15:39:47 +0000 Subject: [PATCH] depexp: fix typo in variable name Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- lib/bb/ui/depexp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/ui/depexp.py b/lib/bb/ui/depexp.py index 03ed823261c..cbda6d5afec 100644 --- a/lib/bb/ui/depexp.py +++ b/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.47.3