From 117c8398c991de967177439c1d31925568253eda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 28 Dec 2017 16:37:59 +0100 Subject: [PATCH 1/3] misc: update missing-django message for Python 3 (#20925) --- mellon/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mellon/__init__.py b/mellon/__init__.py index 668d67a..c9c8f2b 100644 --- a/mellon/__init__.py +++ b/mellon/__init__.py @@ -1,6 +1,6 @@ try: import lasso except ImportError: - print '***** django-mellon needs the Python binding for the lasso library, *****' - print '***** look on http://lasso.entrouvert.org/download/ to obtain it *****' + print('***** django-mellon needs the Python binding for the lasso library, *****') + print('***** look on http://lasso.entrouvert.org/download/ to obtain it *****') raise -- 2.15.1