Merge pull request #311 from iNecas/fix-docopt-deprecation

Replace docopt.Parse with docopt.ParseArgs
This commit is contained in:
Daniel Oaks 2018-12-08 08:55:00 +10:00 committed by GitHub
commit 6cedb80374
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ Options:
-h --help Show this screen.
--version Show version.`
arguments, _ := docopt.Parse(usage, nil, true, version, false)
arguments, _ := docopt.ParseArgs(usage, nil, version)
configfile := arguments["--conf"].(string)
config, err := irc.LoadConfig(configfile)