From 562062ac85bec86b1d1ed1079b05e98f1d877d8d Mon Sep 17 00:00:00 2001 From: Florent Date: Sun, 9 Feb 2014 14:31:44 +0100 Subject: [PATCH] Display backend@issues.weboob.org and not backend.EMAIL --- weboob/tools/application/console.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weboob/tools/application/console.py b/weboob/tools/application/console.py index 2af1751f..0f60b013 100644 --- a/weboob/tools/application/console.py +++ b/weboob/tools/application/console.py @@ -537,7 +537,7 @@ class ConsoleApplication(BaseApplication): elif isinstance(error, NotImplementedError): print >>sys.stderr, u'Error(%s): this feature is not supported yet by this backend.' % backend.name print >>sys.stderr, u' %s To help the maintainer of this backend implement this feature,' % (' ' * len(backend.name)) - print >>sys.stderr, u' %s please contact: %s <%s>' % (' ' * len(backend.name), backend.MAINTAINER, backend.EMAIL) + print >>sys.stderr, u' %s please contact: %s <%s@issues.weboob.org>' % (' ' * len(backend.name), backend.MAINTAINER, backend.name) elif isinstance(error, UserError): print >>sys.stderr, u'Error(%s): %s' % (backend.name, to_unicode(error)) elif isinstance(error, MoreResultsAvailable):