From edd5ff2798fa566e8dba13ad8cff0934056dc079 Mon Sep 17 00:00:00 2001 From: Griatch Date: Wed, 29 Jan 2020 18:37:01 +0100 Subject: [PATCH] Further fix addressing #2035 --- evennia/commands/command.py | 5 +---- evennia/server/evennia_launcher.py | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/evennia/commands/command.py b/evennia/commands/command.py index eade7516a8..8110a9ecb3 100644 --- a/evennia/commands/command.py +++ b/evennia/commands/command.py @@ -415,11 +415,8 @@ class Command(object, metaclass=CommandMeta): Command {self} has no defined `func()` - showing on-command variables: {variables} """ - self.caller.msg(string) - return - # a simple test command to show the available properties - string = "-" * 50 + string += "-" * 50 string += "\n|w%s|n - Command variables from evennia:\n" % self.key string += "-" * 50 string += "\nname of cmd (self.key): |w%s|n\n" % self.key diff --git a/evennia/server/evennia_launcher.py b/evennia/server/evennia_launcher.py index c3888ca184..6203161865 100644 --- a/evennia/server/evennia_launcher.py +++ b/evennia/server/evennia_launcher.py @@ -94,7 +94,7 @@ SRESET = chr(19) # shutdown server in reset mode PYTHON_MIN = "3.7" TWISTED_MIN = "18.0.0" DJANGO_MIN = "2.1" -DJANGO_REC = "2.2.5" +DJANGO_REC = "2.2.9" try: sys.path[1] = EVENNIA_ROOT