Fix regex in CommandTest breaking negative numbers

This commit is contained in:
Tehom 2018-04-22 06:56:27 -04:00
parent 060cfde23e
commit 055bf93ac2

View file

@ -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)
# ------------------------------------------------------------