remove a single period (it was bugging me)

This commit is contained in:
TJ Horner 2019-02-28 16:56:55 -08:00
parent 43c8a67e6f
commit faa2a54a34
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ Usage of e6dl:
--out string
The directory to write the downloaded posts to (default "dl")
--sfw
Download posts from e926 instead of e621.
Download posts from e926 instead of e621
--tags string
Tags to search for
```

View File

@ -13,7 +13,7 @@ func main() {
maxConcurrents := flag.Int("concurrents", 5, "Maximum amount of concurrent downloads")
postLimit := flag.Int("limit", 10, "Maximum amount of posts to grab from e621")
saveDirectory := flag.String("out", "dl", "The directory to write the downloaded posts to")
sfw := flag.Bool("sfw", false, "Download posts from e926 instead of e621.")
sfw := flag.Bool("sfw", false, "Download posts from e926 instead of e621")
flag.Parse()