From 6cf1eed7801d0ae5ac3b950275da830ce606fd79 Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Thu, 18 Apr 2013 18:04:46 +0200 Subject: [PATCH] disable warning when unable to get public profile from website --- modules/aum/browser.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/aum/browser.py b/modules/aum/browser.py index c420e5a6..050029ab 100644 --- a/modules/aum/browser.py +++ b/modules/aum/browser.py @@ -314,7 +314,9 @@ class AuMBrowser(BaseBrowser): try: doc = self.get_document(self.openurl('http://www.adopteunmec.com/profile/%s' % id)) except BrowserUnavailable: - self.logger.warning('Unable to find profile of %s on website' % id) + pass + # FUCK YOU AUM + #self.logger.warning('Unable to find profile of %s on website' % id) else: profile['popu'] = {} for tr in doc.xpath('//div[@id="popularity"]//tr'):