RemovableDriveOutputDevice: Making output of uname command useful

This commit is contained in:
Thomas-Karl Pietrowski 2016-03-14 17:03:08 +01:00
parent 9ccd903fc9
commit 0b0bc80805

View file

@ -4,6 +4,8 @@
from . import RemovableDrivePlugin
from UM.Logger import Logger
import glob
import os
import subprocess
@ -33,6 +35,7 @@ class LinuxRemovableDrivePlugin(RemovableDrivePlugin.RemovableDrivePlugin):
def performEjectDevice(self, device):
p = subprocess.Popen(["umount", device.getId()], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
output = p.communicate()
Logger.log("d", "umount returned: %s.", repr(output))
return_code = p.wait()
if return_code != 0: