Projet

Général

Profil

0001-misc-update-missing-django-message-for-Python-3-2092.patch

Frédéric Péters, 30 décembre 2017 11:14

Télécharger (912 octets)

Voir les différences:

Subject: [PATCH 1/3] misc: update missing-django message for Python 3 (#20925)

 mellon/__init__.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
mellon/__init__.py
1 1
try:
2 2
    import lasso
3 3
except ImportError:
4
    print '***** django-mellon needs the Python binding for the lasso library, *****'
5
    print '***** look on http://lasso.entrouvert.org/download/ to obtain it    *****'
4
    print('***** django-mellon needs the Python binding for the lasso library, *****')
5
    print('***** look on http://lasso.entrouvert.org/download/ to obtain it *****')
6 6
    raise
7
-