changeset 1474:5aab6606e5a3 stable

Fix bug #42826 : missing qrcode dependency in setup.py
author Luis Falcon <falcon@gnu.org>
date Tue, 22 Jul 2014 11:59:37 +0100
parents ecb38c7510af
children 30175996e420
files tryton/health_qrcodes/setup.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tryton/health_qrcodes/setup.py
+++ b/tryton/health_qrcodes/setup.py
@@ -32,7 +32,7 @@
         info[key] = info[key].strip().splitlines()
 major_version, minor_version = 3, 2
 
-requires = []
+requires = ['qrcode']
 
 for dep in info.get('depends', []):
     if dep.startswith('health'):