diff options
| author | mryouse | 2022-06-26 01:47:37 +0000 |
|---|---|---|
| committer | mryouse | 2022-06-26 01:47:37 +0000 |
| commit | 5e0f25c120c9982a1c0e80f30208b4d5da15df40 (patch) | |
| tree | 424a3fa47ec4d7b474ea93de52230f1dc24b59ac /neb | |
| parent | c866c3f7d27c89d2c5105760c112d20c86817165 (diff) | |
bugfix: arguments renamed inadvertantly
Diffstat (limited to 'neb')
| -rw-r--r-- | neb/structs.py | 4 |
1 files changed, 2 insertions, 2 deletions
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: |
