aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-01-27 17:18:29 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-01-27 17:18:29 +0100
commit774dd482c44cdb715175be85a640ff7ae22a137a (patch)
tree4ba94d0977c393c3af5f3f516d558d4f0b91610d /source
parentTest if success when changing the URL of a feed. (diff)
downloadnewspipe-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-xsource/pyAggr3g470r.py2
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
bgstack15