~verb/duplicity/boto-gcs

« back to all changes in this revision

Viewing changes to duplicity/commandline.py

  • Committer: "Kenneth Loafman"
  • Date: 2013-04-27 14:48:39 UTC
  • Revision ID: kenneth@loafman.com-20130427144839-8qzpfzv8tait9boq
* Applied blocksize.patch from https://bugs.launchpad.net/duplicity/+bug/897423
  - New option --max-blocksize (default 2048) to allow increasing delta blocksize.

Show diffs side-by-side

added added

removed removed

Lines of Context:
402
402
                      dest="", action="callback",
403
403
                      callback=lambda o, s, v, p: log.add_file(v))
404
404
 
 
405
    # Maximum block size for large files
 
406
    parser.add_option("--max-blocksize", type="int", metavar=_("number"))
 
407
 
405
408
    # TRANSL: Used in usage help (noun)
406
409
    parser.add_option("--name", dest="backup_name", metavar=_("backup name"))
407
410