From 668f166bcfc5d217dc72a2a4ccafae355360b5a5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Beno=C3=AEt=20Knecht?= Date: Thu, 19 Sep 2013 16:28:33 +0200 Subject: [PATCH] Fix typo in exception message MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Benoît Knecht --- ceph_deploy/osd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceph_deploy/osd.py b/ceph_deploy/osd.py index 5d4a363..71872bf 100644 --- a/ceph_deploy/osd.py +++ b/ceph_deploy/osd.py @@ -104,7 +104,7 @@ def prepare_disk( if fs_type: if fs_type not in ('btrfs', 'ext4', 'xfs'): raise argparse.ArgumentTypeError( - "FS_TYPE must be one of 'btrfs', 'ext4' of 'xfs'") + "FS_TYPE must be one of 'btrfs', 'ext4' or 'xfs'") args.extend(['--fs-type', fs_type]) if dmcrypt: args.append('--dmcrypt') -- 2.47.3