Comment 19 for bug 263411

Revision history for this message
Carles González Silva (carles-gonzalez) wrote :

=== modified file 'usr/share/python-support/liveusb/usbdevice.py'
--- usr/share/python-support/liveusb/usbdevice.py 2008-08-31 08:13:29 +0000
+++ usr/share/python-support/liveusb/usbdevice.py 2008-09-25 15:28:03 +0000
@@ -183,7 +183,7 @@
     def mountFirstPartition(self):
         try:
             tempmountpoint = tempfile.mkdtemp("","tmplive","/mnt") # make temp mountpoint in /mnt
- command = ["mount", "-o", "sync", self.device1, tempmountpoint]
+ command = ["mount", self.device1, tempmountpoint]
             subprocess.call(command)
             self.mountpoints = self.listMountpoints() # refresh list of mountpoints
         except:

Removed the sync option and the "-o" parameter, works fine.