From 49cc1b1e7ec521d68d875a4f360642d54cdf64c0 Mon Sep 17 00:00:00 2001 From: Daniel Grana Date: Mon, 17 Aug 2009 21:42:37 -0300 Subject: [PATCH] add missing future import for python 2.5 --- scrapy/utils/template.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scrapy/utils/template.py b/scrapy/utils/template.py index 406243459..7c1946638 100644 --- a/scrapy/utils/template.py +++ b/scrapy/utils/template.py @@ -1,4 +1,5 @@ """Helper functions for working with templates""" +from __future__ import with_statement import os import re