summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xwriteexts.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/writeexts.py b/writeexts.py
index 676a9d22..a407c059 100755
--- a/writeexts.py
+++ b/writeexts.py
@@ -91,8 +91,7 @@ class WriteExtension(cliapp.Application):
self.status(msg='Mounting filesystem')
tempdir = tempfile.mkdtemp()
- # FIXME: This hardcodes the loop device.
- cliapp.runcmd(['mount', '-o', 'loop=loop0', location, tempdir])
+ cliapp.runcmd(['mount', '-o', 'loop', location, tempdir])
return tempdir
def unmount(self, mount_point):