summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/ui/hob.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/hob.py b/bitbake/lib/bb/ui/hob.py
index c016e44bc0..71ea88acd7 100644
--- a/bitbake/lib/bb/ui/hob.py
+++ b/bitbake/lib/bb/ui/hob.py
@@ -396,8 +396,10 @@ class MainWindow (gtk.Window):
396 gtk.RESPONSE_OK)) 396 gtk.RESPONSE_OK))
397 response = chooser.run() 397 response = chooser.run()
398 rep = BuildRep(None, None, None) 398 rep = BuildRep(None, None, None)
399 recipe = chooser.get_filename()
399 if response == gtk.RESPONSE_OK: 400 if response == gtk.RESPONSE_OK:
400 rep.loadRecipe(chooser.get_filename()) 401 rep.loadRecipe(recipe)
402 self.save_path = recipe
401 chooser.destroy() 403 chooser.destroy()
402 self.model.load_image_rep(rep) 404 self.model.load_image_rep(rep)
403 self.dirty = False 405 self.dirty = False