Merge pull request #24710 from rallytime/pylint-fix

Fix pylint failure on develop
This commit is contained in:
Nicole Thomas 2015-06-16 13:15:02 -06:00
commit 65dd8b664c

View file

@ -813,7 +813,7 @@ def _read_file(path):
# without newlines character. http://stackoverflow.com/questions/12330522/reading-a-file-without-newlines
return contents.read().splitlines()
except Exception:
return [] # Return empty list for type consistency
return [] # Return empty list for type consistency
def _write_file_iface(iface, data, folder, pattern):