Update doc

This commit is contained in:
Aurélien Gâteau 2014-07-24 17:51:51 +02:00
parent 0f23b8ad5c
commit 20521f278c

View File

@ -44,7 +44,7 @@ def mountPartitions( rootMountPoint, partitions ):
if not partition[ "mountPoint" ]: if not partition[ "mountPoint" ]:
continue continue
# Create mount point with `+` rather than `os.path.join()` because # Create mount point with `+` rather than `os.path.join()` because
# `mountPoint` starts with a '/'. # `partition["mountPoint"]` starts with a '/'.
mountPoint = rootMountPoint + partition[ "mountPoint" ] mountPoint = rootMountPoint + partition[ "mountPoint" ]
mount( partition[ "device" ], mountPoint, mount( partition[ "device" ], mountPoint,
fs = partition.get( "fs" ), fs = partition.get( "fs" ),