Skip to content

Commit

Permalink
Convert arguments to string
Browse files Browse the repository at this point in the history
  • Loading branch information
boehmseb committed Oct 7, 2023
1 parent c553b8d commit e769f86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchbuild/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ def as_plumbum(self, **kwargs: tp.Any) -> BoundEnvCommand:
if isinstance(arg, ArgsToken):
args.extend(arg.render(**kwargs))
else:
args.append(arg)
args.append(str(arg))
cmd_w_args = cmd[args]
cmd_w_output = cmd_w_args
if self.output:
Expand Down

0 comments on commit e769f86

Please sign in to comment.