mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Fix missing f-strings for dig
This commit is contained in:
parent
68d45f3526
commit
176cf1133e
1 changed files with 2 additions and 2 deletions
|
|
@ -970,8 +970,8 @@ class CmdDig(ObjManipCommand):
|
|||
if new_to_exit.aliases.all():
|
||||
alias_string = " (%s)" % ", ".join(new_to_exit.aliases.all())
|
||||
exit_to_string = (
|
||||
"\nCreated Exit from {location.name} to {new_room.name}:"
|
||||
" {new_to_exit}({new_to_exit.dbref}){alias_string}."
|
||||
f"\nCreated Exit from {location.name} to {new_room.name}:"
|
||||
f" {new_to_exit}({new_to_exit.dbref}){alias_string}."
|
||||
)
|
||||
|
||||
# Create exit back from new room
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue