From 4dbb354ce924ba579cbf6a6d833f8971b053503f Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Tue, 10 Jun 2025 05:42:14 +0000 Subject: [PATCH] Fix bug in transcript --- typeclasses/puppets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typeclasses/puppets.py b/typeclasses/puppets.py index c471bc5..8f55c27 100755 --- a/typeclasses/puppets.py +++ b/typeclasses/puppets.py @@ -226,7 +226,7 @@ class Shrub(Puppet): text = sub(r"\n", '
\n', text) if msg_type and msg_type == 'look': - text = text[0].upper + text[1:] + text = text[0].upper() + text[1:] return f"

{text}

\n" return f"

{text}

\n"