From 159527e1e2b59b9b820cb379e0b35a76ccacc9c5 Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Sun, 4 Aug 2019 03:08:56 -0700 Subject: [PATCH] fix typo in comment --- lethe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lethe.py b/lethe.py index f8a7c9e..362e409 100755 --- a/lethe.py +++ b/lethe.py @@ -20,7 +20,7 @@ def _run(command: str or List[str], **kwargs): """ Wrapper for subprocess.run(): - Accepts args as either a list of strings or space-delimited string - - Captures and returns stdouti + - Captures and returns stdout """ if isinstance(command, str): args = command.split()