aboutsummaryrefslogtreecommitdiff
path: root/utils/file_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/file_utils.py')
-rw-r--r--utils/file_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/file_utils.py b/utils/file_utils.py
index 74573344..bb431f19 100644
--- a/utils/file_utils.py
+++ b/utils/file_utils.py
@@ -31,7 +31,7 @@ class FileUtils(object):
def Md5File(self, filename, log_level="verbose", block_size=2 ** 10):
command = "md5sum %s" % filename
ce = command_executer.GetCommandExecuter(log_level=log_level)
- ret, out, err = ce.RunCommand(command, return_output=True)
+ ret, out, err = ce.RunCommandWOutput(command)
if ret:
raise Exception("Could not run md5sum on: %s" % filename)