Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib
diff options
context:
space:
mode:
authorDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 14:49:48 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 14:59:23 -0400
commit3b3c1c1d7042d6caffb045b49817a0da4b16ade3 (patch)
tree9f37db2a6df6b1c2f4c8d74ec5c1838b70cf4126 /archinstall/lib
parenta0cbb31d3ef12d5cde2253b4a31757c0409aee40 (diff)
Fix E101: mix of spaces and tabs
Diffstat (limited to 'archinstall/lib')
-rw-r--r--archinstall/lib/disk.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py
index 5967bf3e..65d1599b 100644
--- a/archinstall/lib/disk.py
+++ b/archinstall/lib/disk.py
@@ -413,8 +413,8 @@ class Partition():
"""
The support for a filesystem (this partition) is tested by calling
partition.format() with a path set to '/dev/null' which returns two exceptions:
- 1. SysCallError saying that /dev/null is not formattable - but the filesystem is supported
- 2. UnknownFilesystemFormat that indicates that we don't support the given filesystem type
+ 1. SysCallError saying that /dev/null is not formattable - but the filesystem is supported
+ 2. UnknownFilesystemFormat that indicates that we don't support the given filesystem type
"""
try:
self.format(self.filesystem, '/dev/null', log_formatting=False, allow_formatting=True)