summaryrefslogtreecommitdiff
path: root/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'app.py')
-rw-r--r--app.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/app.py b/app.py
index 4a1240f..a037ea8 100644
--- a/app.py
+++ b/app.py
@@ -75,7 +75,10 @@ def custom():
75@app.route('/apropos') 75@app.route('/apropos')
76def apropos(): 76def apropos():
77 #liste_err = e.initialise_erreurs() 77 #liste_err = e.initialise_erreurs()
78 return flask.render_template("apropos.html") 78 table_version = data.lire_fichier_csv_simple(data.fichier_changelog)
79
80
81 return flask.render_template("apropos.html", version = table_version)
79 82
80 83
81if __name__ == "__main__": 84if __name__ == "__main__":