From d8b68678806a4da1621c0f03f6bdd21303a25ecf Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sat, 12 Apr 2014 19:02:29 +0200 Subject: Trying the export to HTML option on Heroku (2). --- pyaggr3g470r/views.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pyaggr3g470r/views.py b/pyaggr3g470r/views.py index 81462100..3cd8afc5 100644 --- a/pyaggr3g470r/views.py +++ b/pyaggr3g470r/views.py @@ -394,14 +394,11 @@ def export_articles(): Export all articles. """ user = User.query.filter(User.id == g.user.id).first() - archive_file, archive_file_name = export.export_html(user) - """ try: archive_file, archive_file_name = export.export_html(user.feeds) except: flash("Error when exporting articles.", 'danger') return redirect(url_for('management')) - """ response = make_response(archive_file) response.headers['Content-Type'] = 'application/x-compressed' response.headers['Content-Disposition'] = 'attachment; filename='+archive_file_name -- cgit