From fd797ffbf53bcc90035b8f636c8f56997b8dcf8a Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Wed, 5 Jun 2019 15:06:51 +0300 Subject: [PATCH] fix pysol --deal 1/24/1000. Low ms deals without the ms prefix caused an error. --- pysollib/pysolrandom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pysollib/pysolrandom.py b/pysollib/pysolrandom.py index 7d16b09f..0ca6c33a 100644 --- a/pysollib/pysolrandom.py +++ b/pysollib/pysolrandom.py @@ -277,7 +277,7 @@ PysolRandom = MTRandom def _match_ms(s): """match an ms based seed string.""" - return re.match(r"ms([0-9]+)\n?\Z", s) + return re.match(r"ms([0-9]+)\n?\Z", str(s)) # construct Random from seed string