From: Mark Wooding Date: Fri, 4 Oct 2019 17:27:28 +0000 (+0100) Subject: utils/t/bits-testgen.py: Set the `SEED' from the command-line correctly. X-Git-Tag: 2.4.2~6 X-Git-Url: https://git.distorted.org.uk/~mdw/mLib/commitdiff_plain/29922fc0d0f64d23d1d64bc35510a824dc9266af?ds=inline;hp=29922fc0d0f64d23d1d64bc35510a824dc9266af utils/t/bits-testgen.py: Set the `SEED' from the command-line correctly. This never stood a chance before, because `arg' always returned the script path. Now that's fixed, instead `int' complains that the hex number it's being given isn't acceptable. I can't fix this by explicitly passing a radix of 0 because that doesn't allow an existing integer object. So we have this circumlocution. ---