Fix nightly --archive-older command line option

This commit is contained in:
Torsten Grote 2020-05-11 10:23:26 -03:00
parent 3de72bdb0e
commit db96753902
No known key found for this signature in database
GPG key ID: 3E5F77D92CF891FF

View file

@ -102,7 +102,7 @@ def main():
help=_('The file to be included in the repo (path or glob)')) help=_('The file to be included in the repo (path or glob)'))
parser.add_argument("--no-checksum", action="store_true", default=False, parser.add_argument("--no-checksum", action="store_true", default=False,
help=_("Don't use rsync checksums")) help=_("Don't use rsync checksums"))
parser.add_argument("--archive-older", default=20, parser.add_argument("--archive-older", type=int, default=20,
help=_("Set maximum releases in repo before older ones are archived")) help=_("Set maximum releases in repo before older ones are archived"))
# TODO add --with-btlog # TODO add --with-btlog
options = parser.parse_args() options = parser.parse_args()