From 5e0f25c120c9982a1c0e80f30208b4d5da15df40 Mon Sep 17 00:00:00 2001 From: mryouse Date: Sun, 26 Jun 2022 01:47:37 +0000 Subject: bugfix: arguments renamed inadvertantly --- neb/structs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'neb/structs.py') diff --git a/neb/structs.py b/neb/structs.py index f6bd3af..3ab35cc 100644 --- a/neb/structs.py +++ b/neb/structs.py @@ -131,8 +131,8 @@ class Arg: def string_args(args, many): out = [f"{arg}" for arg in args] if many is not None: - many.name = "&" - out.append(f"{many}") + many_dup = Arg("&", many.type_) + out.append(f"{many_dup}") return " ".join(out).strip() class Environment: -- cgit v1.2.3