diff --git a/weboob/exceptions.py b/weboob/exceptions.py index d3b976dbd29aad058465ef7a1a2acd35e0bd5d28..d77b2d4766dff77e968770de809058997fbb3f4e 100644 --- a/weboob/exceptions.py +++ b/weboob/exceptions.py @@ -49,6 +49,9 @@ class BrowserRedirect(BrowserInteraction): def __init__(self, url): self.url = url + def __str__(self): + return 'Redirecting to %s' % self.url + class CaptchaQuestion(Exception): """Site requires solving a CAPTCHA (base class)"""