fix format of umask in help pages

fixes #463
This commit is contained in:
Jakob Schnitzer 2015-12-07 18:40:06 +01:00
parent c7bde3ba3e
commit 3ca1d33d5c
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")')