Kaydet (Commit) f1204121 authored tarafından Ekin Meroğlu's avatar Ekin Meroğlu

fix for new parted

üst 3c9dacaf
......@@ -56,7 +56,7 @@ def blockPartitions(dev):
part = disk.next_partition()
while part:
if part.fs_type and part.fs_type.name != "linux-swap(new)":
if part.fs_type and part.fs_type.name != "linux-swap":
yield dev + str(part.num), part.fs_type.name
part = disk.next_partition(part)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment