Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(233)

Unified Diff: client/bin/partition.py

Issue 6246035: Merge remote branch 'cros/upstream' into master (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: patch Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: client/bin/partition.py
diff --git a/client/bin/partition.py b/client/bin/partition.py
index 355d1b3f34d2788c899dadd98d6a96bf7c69c180..7381f755bc93e4a340631866915bbffae8f20e20 100644
--- a/client/bin/partition.py
+++ b/client/bin/partition.py
@@ -185,7 +185,7 @@ def get_mount_info(partition_list):
mount_info = set()
for p in partition_list:
try:
- uuid = utils.system_output('blkid -s UUID -o value %s' % p.device)
+ uuid = utils.system_output('blkid -p -s UUID -o value %s' % p.device)
except error.CmdError:
# fall back to using the partition
uuid = p.device

Powered by Google App Engine
This is Rietveld 408576698