mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
changed string to add newlines upon insert of batchcommand file fixes #984
This commit is contained in:
parent
6bfafe5214
commit
36c938b06a
1 changed files with 1 additions and 1 deletions
|
|
@ -274,7 +274,7 @@ class BatchCommandProcessor(object):
|
|||
|
||||
def replace_insert(match):
|
||||
"Map replace entries"
|
||||
return "\#\n".join(self.parse_file(match.group(1)))
|
||||
return "\n#".join(self.parse_file(match.group(1)))
|
||||
|
||||
# insert commands from inserted files
|
||||
text = RE_INSERT.sub(replace_insert, text)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue