summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-process/bpytop/files/bpytop-1.0.61-tests.patch')
-rw-r--r--sys-process/bpytop/files/bpytop-1.0.61-tests.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/sys-process/bpytop/files/bpytop-1.0.61-tests.patch b/sys-process/bpytop/files/bpytop-1.0.61-tests.patch
deleted file mode 100644
index 51cef1ce6394..000000000000
--- a/sys-process/bpytop/files/bpytop-1.0.61-tests.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff --git a/bpytop.py b/bpytop.py
-index 38d6e8b..12e4853 100755
---- a/bpytop.py
-+++ b/bpytop.py
-@@ -65,10 +65,11 @@ args.add_argument("-v", "--version", action="store_true", help = "show versio
- args.add_argument("--debug", action="store_true", help = "start with loglevel set to DEBUG overriding value set in config")
- stdargs = args.parse_args()
-
--if stdargs.version:
-- print(f'bpytop version: {VERSION}\n'
-- f'psutil version: {".".join(str(x) for x in psutil.version_info)}')
-- raise SystemExit(0)
-+if __name__ == "__main__":
-+ if stdargs.version:
-+ print(f'bpytop version: {VERSION}\n'
-+ f'psutil version: {".".join(str(x) for x in psutil.version_info)}')
-+ raise SystemExit(0)
-
- ARG_BOXES: str = stdargs.boxes
- LOW_COLOR: bool = stdargs.low_color