summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2015-02-03 18:25:14 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-02-10 23:07:47 +0000
commitd72f1982ee282a481054326571dd63cceb22415b (patch)
tree7332c01591a6072e39876182861014338af7d7c6
parented5c448e2b9a6eb3c8db69905f8d2d37247b72b4 (diff)
downloadpoky-d72f1982ee282a481054326571dd63cceb22415b.tar.gz
bitbake: toastergui: fix loadconf error message
Toaster crashes in loadconf if it needs to raise an Exception due to poorly formatted error message. This patch fixes the formatting [YOCTO #7276] (Bitbake rev: 2a18952a525d15814389584817674f6c3aee12d6) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--bitbake/lib/toaster/bldcontrol/management/commands/loadconf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/management/commands/loadconf.py b/bitbake/lib/toaster/bldcontrol/management/commands/loadconf.py
index e2f61e4cb4..9163e9bf11 100644
--- a/bitbake/lib/toaster/bldcontrol/management/commands/loadconf.py
+++ b/bitbake/lib/toaster/bldcontrol/management/commands/loadconf.py
@@ -59,7 +59,7 @@ class Command(BaseCommand):
59 except ValueError: 59 except ValueError:
60 pass 60 pass
61 if url == None: 61 if url == None:
62 raise Exception("Error while looking for remote \"%s\" in \"s\"" % (remote_name, lo.local_path)) 62 raise Exception("Error while looking for remote \"%s\" in \"%s\"" % (remote_name, out))
63 return url 63 return url
64 64
65 65