from django.conf import settings as djsettings
import settings as selfsettings
+# Try to import the with statement
+try:
+ from __future__ import with_statement
+except:
+ pass
+
CACHE_KEY = "%s_exporter_state" % APP_URL
EXPORT_STEPS = []
from orm import orm
import commands, settings
+# Try to import the with statement
+try:
+ from __future__ import with_statement
+except:
+ pass
+
NO_DEFAULT = object()
import string
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):