diff options
Diffstat (limited to 'rpython/translator/platform/arch/s390x.py')
-rw-r--r-- | rpython/translator/platform/arch/s390x.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpython/translator/platform/arch/s390x.py b/rpython/translator/platform/arch/s390x.py index 1412b05499..8ee2d6cf78 100644 --- a/rpython/translator/platform/arch/s390x.py +++ b/rpython/translator/platform/arch/s390x.py @@ -7,7 +7,7 @@ def extract_s390x_cpu_ids(lines): re_number = re.compile("processor (\d+):") re_version = re.compile("version = ([0-9A-Fa-f]+)") re_id = re.compile("identification = ([0-9A-Fa-f]+)") - re_machine = re.compile("machine = ([0-9A-Fa-f+)") + re_machine = re.compile("machine = ([0-9A-Fa-f]+)") for line in lines: number = -1 version = None |