summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-09-19 07:27:33 -0400
committerJohn Turner <jturner.usa@gmail.com>2025-09-19 07:27:33 -0400
commit6b842cbaf865c9dce58eb6d90fd0541effec2fe8 (patch)
tree27d6317f5aca1a10e02b31825ff075d8a64b7133
parent1458c9012354da71426d0848c022cbc6644cc1db (diff)
downloadpypaste-master.tar.gz
dont return if command returns non-zeroHEADmaster
-rw-r--r--pypaste/client/__main__.py1
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: