summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Synacek <jsynacek@redhat.com>2014-02-25 10:13:58 +0100
committerJan Synacek <jsynacek@redhat.com>2014-02-25 10:13:58 +0100
commit99937700f24cad92a8a44555e3d02d6afc6e3443 (patch)
tree16870d4769bc7a880509df9d1a3a4066e7c5d6c4
parent094a6f42c4c1d0446042c723846ba87606bd06a8 (diff)
downloadopenlmi-scripts-99937700f24cad92a8a44555e3d02d6afc6e3443.tar.gz
openlmi-scripts-99937700f24cad92a8a44555e3d02d6afc6e3443.tar.xz
openlmi-scripts-99937700f24cad92a8a44555e3d02d6afc6e3443.zip
storage: fix mount list
-rw-r--r--commands/storage/lmi/scripts/storage/mount.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/storage/lmi/scripts/storage/mount.py b/commands/storage/lmi/scripts/storage/mount.py
index 2f61ee6..c94bc5a 100644
--- a/commands/storage/lmi/scripts/storage/mount.py
+++ b/commands/storage/lmi/scripts/storage/mount.py
@@ -72,7 +72,7 @@ def build_opts_str(mnt):
otheropts = v
elif k in _OPTS:
opts.append(k + ':' + unicode(v))
- opts.extend(o)
+ opts.extend(otheropts)
return ', '.join(sorted(opts))
def get_setting_from_opts(ns, options):