From 20521f278c949cbf74de05b912205fa559ec0763 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20G=C3=A2teau?= Date: Thu, 24 Jul 2014 17:51:51 +0200 Subject: [PATCH] Update doc --- src/modules/mount/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/mount/main.py b/src/modules/mount/main.py index 9d30823fb..1ba8c563a 100644 --- a/src/modules/mount/main.py +++ b/src/modules/mount/main.py @@ -44,7 +44,7 @@ def mountPartitions( rootMountPoint, partitions ): if not partition[ "mountPoint" ]: continue # Create mount point with `+` rather than `os.path.join()` because - # `mountPoint` starts with a '/'. + # `partition["mountPoint"]` starts with a '/'. mountPoint = rootMountPoint + partition[ "mountPoint" ] mount( partition[ "device" ], mountPoint, fs = partition.get( "fs" ),