- fixed typo that caused ConfigParser to not be imported in python 2

This commit is contained in:
Edwin O Marshall 2013-08-15 22:17:02 -04:00
parent 874a1d6986
commit eebd550eb7
1 changed files with 1 additions and 1 deletions

View File

@ -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