aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rwxr-xr-xsource/pyAggr3g470r.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index 135cae52..4de23ee1 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -549,7 +549,8 @@ class pyAggr3g470r(object):
getattr(export, export_method)(self.mongo)
except Exception as e:
return self.error(e)
- return self.management()
+ tmpl = lookup.get_template("confirmation.html")
+ return tmpl.render(message="<p>Export successfully terminated.<br />Check the folder: <b>./pyaggr3g470r/source/var/export/</b>.</p>")
export.exposed = True
bgstack15