Small bug fix.

This commit is contained in:
Holger Rapp 2014-02-10 08:48:33 +01:00
parent f2a9a5eb8d
commit 2308687d1f

View File

@ -594,7 +594,7 @@ class SnippetManager(object):
changes in the future. 'file_data' can be injected in tests.""" changes in the future. 'file_data' can be injected in tests."""
self._snippets[ft].addfile(filename) self._snippets[ft].addfile(filename)
if file_data is None: if file_data is None:
file_data = file_data.read() file_data = open(filename, "r").read()
for event, data in parse_snippets_file(file_data): for event, data in parse_snippets_file(file_data):
if event == "error": if event == "error":
msg, line_index = data msg, line_index = data