X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=blobdiff_plain;f=mudpy%2Fcommand.py;fp=mudpy%2Fcommand.py;h=5ba3d28582471d095242581a6c20c2a4863310cf;hp=a26906b93f3885ec29afde98e19de09af4302c08;hb=2f395c0d81aa9ca60a86940dcb4c49c9f7e5815d;hpb=509e33f717fdbd455792f4cba3f2a583dc6100db diff --git a/mudpy/command.py b/mudpy/command.py index a26906b..5ba3d28 100644 --- a/mudpy/command.py +++ b/mudpy/command.py @@ -423,9 +423,8 @@ def show(actor, parameters): elif arguments[0] == "version": message = repr(actor.universe.versions) elif arguments[0] == "time": - message = actor.universe.groups["internal"]["counters"].get( - "elapsed" - ) + " increments elapsed since the world was created." + message = "%s increments elapsed since the world was created." % ( + str(actor.universe.groups["internal"]["counters"].get("elapsed"))) elif arguments[0] == "groups": message = "These are the element groups:$(eol)" groups = list(actor.universe.groups.keys())