mirror of
https://github.com/evennia/evennia.git
synced 2026-03-26 01:36:32 +01:00
Fix regex in CommandTest breaking negative numbers
This commit is contained in:
parent
df664f0ee6
commit
3bebe2ac22
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ from evennia import DefaultObject, DefaultCharacter
|
|||
|
||||
# set up signal here since we are not starting the server
|
||||
|
||||
_RE = re.compile(r"^\+|-+\+|\+-+|--*|\|(?:\s|$)", re.MULTILINE)
|
||||
_RE = re.compile(r"^\+|-+\+|\+-+|--+|\|(?:\s|$)", re.MULTILINE)
|
||||
|
||||
|
||||
# ------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue