Merge pull request #79 from chrcoe/fix-datatype

quick fix for both if and else conditions
This commit is contained in:
Chiel 2015-10-10 13:51:50 +02:00
commit 4353db53c0

View File

@ -188,9 +188,9 @@ else:
# It is not entirely clear when and why that happens. # It is not entirely clear when and why that happens.
# However, extra newlines are almost never required, while there are linters that complain # However, extra newlines are almost never required, while there are linters that complain
# about superfluous newlines, so we remove one empty newline at the end of the file. # about superfluous newlines, so we remove one empty newline at the end of the file.
stdoutdata_decoded = stdoutdata.decode('utf-8') stdoutdata = stdoutdata.decode('utf-8')
if stdoutdata_decoded[-1] == os.linesep: if stdoutdata[-1] == os.linesep:
stdoutdata = stdoutdata_decoded[:-1] stdoutdata = stdoutdata[:-1]
vim.current.buffer[:] = stdoutdata.split(os.linesep) vim.current.buffer[:] = stdoutdata.split(os.linesep)
EOF EOF