diff --git a/rstat_tool/main.py b/rstat_tool/main.py index 113e73c..861c9c3 100644 --- a/rstat_tool/main.py +++ b/rstat_tool/main.py @@ -189,7 +189,7 @@ def main(): parser.add_argument("-d", "--days", type=int, default=1, help="Number of past days to scan for new posts. (Default: 1)") parser.add_argument("-p", "--posts", type=int, default=200, help="Max posts to check per subreddit. (Default: 200)") parser.add_argument("-c", "--comments", type=int, default=100, help="Number of comments to scan per post. (Default: 100)") - parser.add_argument("--no-financials", action="store_true", help="Disable fetching of financial data during the Reddit scan.") + parser.add_argument("-n", "--no-financials", action="store_true", help="Disable fetching of financial data during the Reddit scan.") parser.add_argument("--debug", action="store_true", help="Enable detailed debug logging to the console.") parser.add_argument("--stdout", action="store_true", help="Print all log messages to the console.")