1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Correct a regex.

\d can match more than just [0-9].
This commit is contained in:
Shlomi Fish 2016-11-09 19:37:30 +02:00
parent d229a5a7d4
commit 1ff90e1641

View file

@ -248,7 +248,7 @@ PysolRandom = MTRandom
# construct Random from seed string
def constructRandom(s):
m = re.match(r"ms(\d+)\n?\Z", s);
m = re.match(r"ms([0-9]+)\n?\Z", s);
if m:
seed = long(m.group(1))
if 0 <= seed <= LCRandom31.MAX_SEED: