From: Benoît Knecht Date: Thu, 19 Sep 2013 14:28:33 +0000 (+0200) Subject: Fix typo in exception message X-Git-Tag: v1.2.7~15^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=668f166bcfc5d217dc72a2a4ccafae355360b5a5;p=ceph-deploy.git Fix typo in exception message Signed-off-by: Benoît Knecht --- 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')