From f2decc007c1960de436e564cc74d7963952c61e2 Mon Sep 17 00:00:00 2001 From: rumanzo Date: Sun, 3 Apr 2022 19:20:26 +0300 Subject: [PATCH] Fix help --- internal/options/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/options/options.go b/internal/options/options.go index efcfc56..bb8aa47 100644 --- a/internal/options/options.go +++ b/internal/options/options.go @@ -15,7 +15,7 @@ import ( type Opts struct { BitDir string `short:"s" long:"source" description:"Source directory that contains resume.dat and torrents files"` QBitDir string `short:"d" long:"destination" description:"Destination directory BT_backup (as default)"` - Categories string `short:"c" long:"categories" description:"path to qBittorrent categories.json file (for write tags)"` + Categories string `short:"c" long:"categories" description:"Path to qBittorrent categories.json file (for write tags)"` WithoutLabels bool `long:"without-labels" description:"Do not export/import labels"` WithoutTags bool `long:"without-tags" description:"Do not export/import tags"` SearchPaths []string `short:"t" long:"search" description:"Additional search path for torrents files\n Example: --search='/mnt/olddisk/savedtorrents' --search='/mnt/olddisk/workstorrents'"`