From b914e66969385804fc02e879eca0931e8aaaca0f Mon Sep 17 00:00:00 2001 From: Florent Date: Wed, 19 Mar 2014 11:18:47 +0100 Subject: [PATCH] Fix hints in not found error --- weboob/applications/boobsize/boobsize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weboob/applications/boobsize/boobsize.py b/weboob/applications/boobsize/boobsize.py index fcb4845e..efebdee6 100644 --- a/weboob/applications/boobsize/boobsize.py +++ b/weboob/applications/boobsize/boobsize.py @@ -109,7 +109,7 @@ class Boobsize(ReplApplication): def bcall_error_handler(self, backend, error, backtrace): if isinstance(error, SensorNotFound): - msg = unicode(error) or 'Sensor not found (hint: try sensors command)' + msg = unicode(error) or 'Sensor not found (hint: try details command)' print >>sys.stderr, 'Error(%s): %s' % (backend.name, msg) else: return ReplApplication.bcall_error_handler(self, backend, error, backtrace)