Correct cli settings help

This commit is contained in:
shortcutme 2018-03-10 02:00:12 +01:00
parent b1f16857fc
commit 96e9cc9c32
No known key found for this signature in database
GPG key ID: 5B63BAE6CB9613AE

View file

@ -694,6 +694,6 @@ class SitePlugin(object):
class ConfigPlugin(object):
def createArguments(self):
group = self.parser.add_argument_group("Bigfile plugin")
group.add_argument('--autodownload_bigfile_size_limit', help='Also download bigfiles until this limit if help distribute option is checked', default=1, metavar="MB", type=int)
group.add_argument('--autodownload_bigfile_size_limit', help='Also download bigfiles smaller than this limit if help distribute option is checked', default=1, metavar="MB", type=int)
return super(ConfigPlugin, self).createArguments()