mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Changed @about command to reflect new requirements
This commit is contained in:
parent
48f145031b
commit
9a5256ec12
1 changed files with 1 additions and 8 deletions
|
|
@ -558,11 +558,6 @@ class CmdAbout(MuxCommand):
|
|||
|
||||
def func(self):
|
||||
"Show the version"
|
||||
try:
|
||||
import south
|
||||
sversion = "{wSouth{n %s" % south.__version__
|
||||
except ImportError:
|
||||
sversion = "{wSouth{n <not installed>"
|
||||
|
||||
string = """
|
||||
{cEvennia{n %s{n
|
||||
|
|
@ -579,13 +574,11 @@ class CmdAbout(MuxCommand):
|
|||
{wPython{n %s
|
||||
{wTwisted{n %s
|
||||
{wDjango{n %s
|
||||
%s
|
||||
""" % (utils.get_evennia_version(),
|
||||
os.name,
|
||||
sys.version.split()[0],
|
||||
twisted.version.short(),
|
||||
django.get_version(),
|
||||
sversion)
|
||||
django.get_version())
|
||||
self.caller.msg(string)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue