From c32e7f636f8cd943b36107ba61d6b5fbc9c3caae Mon Sep 17 00:00:00 2001 From: Brian Read Date: Sun, 2 Nov 2025 11:15:05 +0000 Subject: [PATCH] Set Default for test channel to false --- FeedToRocket.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FeedToRocket.py b/FeedToRocket.py index 1be48f8..32ab4ac 100644 --- a/FeedToRocket.py +++ b/FeedToRocket.py @@ -1182,7 +1182,7 @@ def main(): parser.add_argument("--log-level", type=str, default="INFO", help="Logging level") parser.add_argument("--selftest-gitea", action="store_true", help="Run built-in Gitea parser selftest using the embedded sample Atom (no network, no send)") - parser.add_argument("--test-channel",action="store_false",help="Switch all the channels to post in brians test channel") + parser.add_argument("--test-channel",action="store_true",help="Switch all the channels to post in brians test channel") args = parser.parse_args()