From 30e96b4857422948d1586c6ed69e5f8f67960f05 Mon Sep 17 00:00:00 2001 From: Josef Bacik Date: Fri, 4 Dec 2009 10:42:44 -0500 Subject: Change btrfs command line option In F11 and F12 the command line option to enable btrfs during the installer was "icantbelieveitsnotbtr". Unfortunately I can't spell believe the first time every time, and btrfs has come quite a ways since F11 and is stable enough to start being tested on a larger scale. So change the command line option to "btrfs" in keeping with tradition and to make it a bit simpler for those who want to take it for a test spin in F13. Thanks, Signed-off-by: Josef Bacik --- storage/formats/fs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'storage/formats') diff --git a/storage/formats/fs.py b/storage/formats/fs.py index 587edecc7..7c861a438 100644 --- a/storage/formats/fs.py +++ b/storage/formats/fs.py @@ -1080,7 +1080,7 @@ class BTRFS(FS): def supported(self): """ Is this filesystem a supported type? """ supported = self._supported - if flags.cmdline.has_key("icantbelieveitsnotbtr"): + if flags.cmdline.has_key("btrfs"): supported = self.utilsAvailable return supported -- cgit