mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 09:50:37 +00:00
remove semicolons.. :-/
This commit is contained in:
parent
029fc221a1
commit
5a4719c236
1 changed files with 2 additions and 2 deletions
|
@ -109,7 +109,7 @@ class MountAdditional(Task):
|
|||
import os
|
||||
from bootstrapvz.base.fs.partitions.unformatted import UnformattedPartition
|
||||
p_map = info.volume.partition_map
|
||||
partitions = p_map.partitions;
|
||||
partitions = p_map.partitions
|
||||
is_additional = lambda partition: (
|
||||
not isinstance(partition, UnformattedPartition)
|
||||
and partition.name not in ["boot", "swap", "root"]
|
||||
|
@ -192,7 +192,7 @@ class FStab(Task):
|
|||
import os.path
|
||||
from bootstrapvz.base.fs.partitions.unformatted import UnformattedPartition
|
||||
p_map = info.volume.partition_map
|
||||
partitions = p_map.partitions;
|
||||
partitions = p_map.partitions
|
||||
mount_points = [{'path': '/',
|
||||
'partition': p_map.root,
|
||||
'dump': '1',
|
||||
|
|
Loading…
Add table
Reference in a new issue