From b1bbda788c70650c4f794538f45d1cadcd2f4468 Mon Sep 17 00:00:00 2001 From: Matt Burchett Date: Wed, 23 Sep 2020 10:17:34 -0500 Subject: [PATCH] fixing typo --- cmd/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/main.go b/cmd/main.go index 65efd2c..df65e00 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -22,7 +22,7 @@ func main() { flag.IntVar(&days, "days", 0, "How many days of inactivity to look for on Plex.") flag.IntVar(§ionID, "sectionid", 0, "Plex Section ID") flag.BoolVar(&check, "check", true, "Perform only a check. This will send the message out to Telegram with what can be removed. Does not delete.") - flag.BoolVar(&text, "check", false, "This will override the communication to Telegram and print to stdout.") + flag.BoolVar(&text, "text", false, "This will override the communication to Telegram and print to stdout.") flag.BoolVar(&delete, "delete", false, "Perform the delete task.") flag.Parse()