From 4701ee0b05208afffa7d5a660013b02abf417c4e Mon Sep 17 00:00:00 2001 From: Fuxino Date: Mon, 19 Jun 2023 16:00:21 +0200 Subject: [PATCH] Fix typo --- simple_backup/simple_backup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simple_backup/simple_backup.py b/simple_backup/simple_backup.py index d9b31b2..47b9fbf 100755 --- a/simple_backup/simple_backup.py +++ b/simple_backup/simple_backup.py @@ -581,7 +581,7 @@ def _parse_arguments(): help='Specify options for rsync') parser.add_argument('--remote-sudo', action='store_true', help='Run rsync on remote server with sudo if allowed') parser.add_argument('--numeric-ids', action='store_true', - help='Use rsync \'--numeric-ids\' option (don\'t map uid/gid values by name') + help='Use rsync \'--numeric-ids\' option (don\'t map uid/gid values by name)') args = parser.parse_args()