rsync wrapper for pushing incremental backups
Revision | 4f4c9522075cccb85d213938bd060df0598179fa (tree) |
---|---|
Zeit | 2019-11-13 16:51:10 |
Autor | Frank Tobin <ftobin@neve...> |
Commiter | Frank Tobin |
reorder some arguments in help
@@ -26,7 +26,7 @@ | ||
26 | 26 | |
27 | 27 | parser.add_argument("-r", "--rsync-opt", action="append", default=[], |
28 | 28 | help="pass-thru options to rsync. Use '=' syntax, and include prefixing dashes. Example: --rsync-opt=--partial-dir=/home/user/rsync-partial") |
29 | -parser.add_argument("--quiet", "-q", action="store_true", default=False, | |
29 | +parser.add_argument("-q", "--quiet", action="store_true", default=False, | |
30 | 30 | help="emit less output") |
31 | 31 | |
32 | 32 | backup_prefix = "backup-" |