summaryrefslogtreecommitdiff
path: root/morphlib/fsutils.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/fsutils.py')
-rw-r--r--morphlib/fsutils.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/morphlib/fsutils.py b/morphlib/fsutils.py
index 6a1ec2e2..bfc509b5 100644
--- a/morphlib/fsutils.py
+++ b/morphlib/fsutils.py
@@ -37,7 +37,6 @@ def install_mbr(ex, image_name):
def setup_device_mapping(ex, image_name):
findstart = re.compile(r"start=\s+(\d+),")
out = ex.runv(['sfdisk', '-d', image_name])
- print(out)
for line in out.splitlines():
match = findstart.search(line)
if match is None: