Fix bad return value in ssh._validate_keys.py

This commit is contained in:
Thomas S Hatch 2012-04-13 15:50:39 -06:00
parent 5d5ec1e19d
commit c3db82154a

View File

@ -124,7 +124,7 @@ def _validate_keys(key_file):
'comment': comment,
'options': options}
except IOError:
return 'fail'
return {}
return ret