summaryrefslogtreecommitdiffstats
path: root/storage/formats/fs.py
diff options
context:
space:
mode:
authorMartin Gracik <mgracik@redhat.com>2009-03-30 19:56:00 +0200
committerMartin Gracik <mgracik@redhat.com>2009-03-31 15:24:09 +0200
commit0f0d794130684465bbe21c08f26fc8d2fd37a952 (patch)
tree22c6688ef90b7d9a9df4baf03ee089e1fdb49d36 /storage/formats/fs.py
parentb1a13d63d0544a2ab123a0405c80006df5feeaad (diff)
downloadanaconda-0f0d794130684465bbe21c08f26fc8d2fd37a952.tar.gz
anaconda-0f0d794130684465bbe21c08f26fc8d2fd37a952.tar.xz
anaconda-0f0d794130684465bbe21c08f26fc8d2fd37a952.zip
Fixes of errors shown by pylint that didn't get into the beta build.
Diffstat (limited to 'storage/formats/fs.py')
-rw-r--r--storage/formats/fs.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/storage/formats/fs.py b/storage/formats/fs.py
index 474d8287e..cff52d3a4 100644
--- a/storage/formats/fs.py
+++ b/storage/formats/fs.py
@@ -664,10 +664,9 @@ class FS(DeviceFormat):
return _type
- """ These methods just wrap filesystem-specific methods in more
- generically named methods so filesystems and formatted devices
- like swap and LVM physical volumes can have a common API.
- """
+ # These methods just wrap filesystem-specific methods in more
+ # generically named methods so filesystems and formatted devices
+ # like swap and LVM physical volumes can have a common API.
def create(self, *args, **kwargs):
if self.exists:
raise FSError("filesystem already exists")