]> git.openstreetmap.org Git - osqa.git/blobdiff - forum_modules/exporter/views.py
#OSQA-574, a bit of backwards compatibility, importing the with_statements from the...
[osqa.git] / forum_modules / exporter / views.py
index 856017908dcd1509e3691ab0972ea19e1c7d6512..edbeedc083ae80e6977e027099dd0cfb17d61f91 100644 (file)
@@ -1,3 +1,5 @@
+from __future__ import with_statement
+
 import os, tarfile, ConfigParser, datetime
 
 from StringIO import StringIO
@@ -16,13 +18,6 @@ from forum import settings
 from exporter import export, CACHE_KEY, EXPORT_STEPS, DATE_AND_AUTHOR_INF_SECTION, DATETIME_FORMAT
 from importer import start_import
 
-# Try to import the with statement
-try:
-    from __future__ import with_statement
-except:
-    pass
-
-
 @admin_tools_page(_('exporter'), _('XML data export'))
 def exporter(request):
     state = cache.get(CACHE_KEY)