mirror of https://github.com/kivy/kivy.git
- fixed typo that caused ConfigParser to not be imported in python 2
This commit is contained in:
parent
874a1d6986
commit
eebd550eb7
|
@ -105,7 +105,7 @@ import tokenize
|
||||||
from optparse import OptionParser
|
from optparse import OptionParser
|
||||||
from fnmatch import fnmatch
|
from fnmatch import fnmatch
|
||||||
try:
|
try:
|
||||||
from configparser import RawConfigParser
|
from ConfigParser import RawConfigParser
|
||||||
from io import TextIOWrapper
|
from io import TextIOWrapper
|
||||||
except ImportError:
|
except ImportError:
|
||||||
from configparser import RawConfigParser
|
from configparser import RawConfigParser
|
||||||
|
|
Loading…
Reference in New Issue