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

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)