Skip to content

Commit

Permalink
Fix a type error in ed86417
Browse files Browse the repository at this point in the history
  • Loading branch information
cvaroqui committed Feb 6, 2018
1 parent 2ee7d24 commit 726a52b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/resDiskMdLinux.py
Expand Up @@ -305,7 +305,7 @@ def sub_devs_inactive(self):
l = map(lambda x: os.path.realpath(x), l)
paths = set()
for dev in l:
_paths = dev_to_paths(dev)
_paths = set(dev_to_paths(dev))
if set([dev]) != _paths:
paths |= _paths
devs.add(dev)
Expand Down

0 comments on commit 726a52b

Please sign in to comment.