diff options
| author | John Turner <jturner.usa@gmail.com> | 2025-09-19 07:27:33 -0400 |
|---|---|---|
| committer | John Turner <jturner.usa@gmail.com> | 2025-09-19 07:27:33 -0400 |
| commit | 6b842cbaf865c9dce58eb6d90fd0541effec2fe8 (patch) | |
| tree | 27d6317f5aca1a10e02b31825ff075d8a64b7133 | |
| parent | 1458c9012354da71426d0848c022cbc6644cc1db (diff) | |
| download | pypaste-6b842cbaf865c9dce58eb6d90fd0541effec2fe8.tar.gz | |
dont return if command returns non-zero
| -rw-r--r-- | pypaste/client/__main__.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pypaste/client/__main__.py b/pypaste/client/__main__.py index 7a86445..3755371 100644 --- a/pypaste/client/__main__.py +++ b/pypaste/client/__main__.py @@ -89,7 +89,6 @@ def main() -> int: f"{command} failed with exit code: {proc.returncode}:{proc.stdout}", file=sys.stderr, ) - return 1 text = f"# {command}\n{proc.stdout}" else: |
