From: Ross Burton Date: Mon, 5 Aug 2013 15:39:47 +0000 (+0000) Subject: depexp: fix typo in variable name X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e3b8585738abea96a9fd1d1204731004a35e0bc9;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git depexp: fix typo in variable name Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- 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)