Merge pull request #472 from yagebu/master

fix format of umask in help pages
This commit is contained in:
TW 2015-12-07 19:27:20 +01:00
commit 207bf5d8b3
1 changed files with 1 additions and 1 deletions

View File

@ -675,7 +675,7 @@ class Archiver:
common_parser.add_argument('--no-files-cache', dest='cache_files', action='store_false',
help='do not load/update the file metadata cache used to detect unchanged files')
common_parser.add_argument('--umask', dest='umask', type=lambda s: int(s, 8), default=RemoteRepository.umask, metavar='M',
help='set umask to M (local and remote, default: %(default)s)')
help='set umask to M (local and remote, default: %(default)04o)')
common_parser.add_argument('--remote-path', dest='remote_path', default=RemoteRepository.remote_path, metavar='PATH',
help='set remote path to executable (default: "%(default)s")')