Skip to content

Commit

Permalink
Do not have two ignored variables when one will do.
Browse files Browse the repository at this point in the history
Signed-off-by: mulhern <amulhern@redhat.com>
  • Loading branch information
mulkieran committed May 6, 2015
1 parent b440c30 commit 0e3263d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blivet/mounts.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def _getActiveMounts(self):
self.mountpoints = defaultdict(list)
for line in open("/proc/mounts").readlines():
try:
(devspec, mountpoint, fstype, _options, _rest) = line.split(None, 4)
(devspec, mountpoint, fstype, _rest) = line.split(None, 3)
except ValueError:
log.error("failed to parse /proc/mounts line: %s", line)
continue
Expand Down

0 comments on commit 0e3263d

Please sign in to comment.