mirror of
https://github.com/gryf/pylint-vim.git
synced 2025-12-19 04:20:23 +01:00
Python3 compatibility for the StringIO
This commit is contained in:
@@ -3,7 +3,10 @@ Get pylint oputput on current buffer
|
|||||||
"""
|
"""
|
||||||
import sys
|
import sys
|
||||||
import re
|
import re
|
||||||
from StringIO import StringIO
|
try:
|
||||||
|
from StringIO import StringIO
|
||||||
|
except ImportError:
|
||||||
|
from io import StringIO
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from pylint import lint
|
from pylint import lint
|
||||||
|
|||||||
Reference in New Issue
Block a user