From cc0e502628e422531f25acfdc5fa1b4f4f73a333 Mon Sep 17 00:00:00 2001 From: Christos Lamprakos Date: Thu, 24 Feb 2022 14:24:40 +0200 Subject: [PATCH] Fix --inherit-environ issue --- pyperformance/_benchmark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyperformance/_benchmark.py b/pyperformance/_benchmark.py index cd51dfe6..516fbbd1 100644 --- a/pyperformance/_benchmark.py +++ b/pyperformance/_benchmark.py @@ -252,7 +252,7 @@ def _resolve_restricted_opts(opts): if opt.startswith(FLAG + '='): idx = i + 1 resolved.append(FLAG) - resolved.append(opt.partition('=')[-2]) + resolved.append(opt.partition('=')[-1]) resolved.extend(opts[idx:]) break elif opt == FLAG: