From 3f180d254bc0dd4a6117ca6a82900203e53a2fc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Lebleu?= Date: Thu, 6 Nov 2014 01:11:35 +0100 Subject: [PATCH] [enh] Add version to returned dict in app_info --- app.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app.py b/app.py index f57e1fdfb..83ec12f55 100644 --- a/app.py +++ b/app.py @@ -215,7 +215,9 @@ def app_info(app, raw=False): # FIXME: Temporarly allow undefined license 'license': app_info['manifest'].get('license', m18n.n('license_undefined')), - #TODO: Add more infos + # FIXME: Temporarly allow undefined version + 'version' : app_info['manifest'].get('version', '-'), + #TODO: Add more info }