From 0cdcd10b52247dbf5a72d34ae7ec29236a0b560d Mon Sep 17 00:00:00 2001 From: Laurent Bachelier Date: Thu, 30 Sep 2010 23:49:15 +0200 Subject: [PATCH] Fix syntax error with Python<2.6 --- weboob/tools/browser/browser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weboob/tools/browser/browser.py b/weboob/tools/browser/browser.py index b22825d4..120c07a0 100644 --- a/weboob/tools/browser/browser.py +++ b/weboob/tools/browser/browser.py @@ -15,7 +15,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - +from __future__ import with_statement import mechanize import urllib import urllib2