diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-01-27 17:18:29 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-01-27 17:18:29 +0100 |
commit | 774dd482c44cdb715175be85a640ff7ae22a137a (patch) | |
tree | 4ba94d0977c393c3af5f3f516d558d4f0b91610d /source | |
parent | Test if success when changing the URL of a feed. (diff) | |
download | newspipe-774dd482c44cdb715175be85a640ff7ae22a137a.tar.gz newspipe-774dd482c44cdb715175be85a640ff7ae22a137a.tar.bz2 newspipe-774dd482c44cdb715175be85a640ff7ae22a137a.zip |
Display the absolute path of the result after a succesfull export.
Diffstat (limited to 'source')
-rwxr-xr-x | source/pyAggr3g470r.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py index db67d384..cecb73ff 100755 --- a/source/pyAggr3g470r.py +++ b/source/pyAggr3g470r.py @@ -604,7 +604,7 @@ class pyAggr3g470r(object): except Exception as e: return self.error(e) 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>") + return tmpl.render(message="<p>Export successfully terminated.<br />Check the folder: <b>" + conf.path + "/var/export/</b>.</p>") export.exposed = True |