From 8ade616d1bef056f75e7c957a46b1d7046b250c8 Mon Sep 17 00:00:00 2001 From: Griatch Date: Fri, 5 Sep 2014 09:57:40 +0200 Subject: [PATCH] Made newer-django warning format correctly. --- src/utils/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/utils.py b/src/utils/utils.py index 0591eeb300..7c8e2c7a41 100644 --- a/src/utils/utils.py +++ b/src/utils/utils.py @@ -665,8 +665,8 @@ def check_evennia_dependencies(): elif django_min <= dversion < django_rec: errstring += "\n NOTE: Django %s found. This will work, but v%s is recommended for production." % (dversion, django_rec) elif django_rec < dversion_main: - errstring += "\n NOTE: Django %s found. This is newer than Evennia's recommended version. It will" - errstring += "\n probably work, but may be new enough not to be fully tested yet. Report any issues." + errstring += "\n NOTE: Django %s found. This is newer than Evennia's recommended version (v%s). It will" + errstring += "\n probably work, but may be new enough not to be fully tested yet. Report any issues." % (dversion, django_rec) except ImportError: errstring += "\n ERROR: Django does not seem to be installed." no_error = False