Skip to content

Commit

Permalink
chore: followup #629
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Schreiner <[email protected]>
  • Loading branch information
henryiii committed Nov 1, 2023
1 parent 112b514 commit fe7752f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions plumbum/commands/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -533,8 +533,9 @@ def _get_encoding(self):
def formulate(self, level=0, args=()):
return [
f"echo {shquote(self.data)}",
"|"
] + self.cmd.formulate(level + 1, args),
"|",
*self.cmd.formulate(level + 1, args),
]

@property
def machine(self):
Expand Down

0 comments on commit fe7752f

Please sign in to comment.