This commit is contained in:
Stefan Midjich 2016-04-18 21:33:35 +02:00
parent e157fd4dd9
commit df806d5797
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ from io import BytesIO
from logging import getLogger, DEBUG, WARN, INFO from logging import getLogger, DEBUG, WARN, INFO
try: try:
from congiparser import RawConfigParser from configparser import RawConfigParser
except ImportError: except ImportError:
from ConfigParser import RawConfigParser from ConfigParser import RawConfigParser

View File

@ -4,7 +4,7 @@
from logging import getLogger, DEBUG, WARN, INFO from logging import getLogger, DEBUG, WARN, INFO
try: try:
from congiparser import RawConfigParser from configparser import RawConfigParser
except ImportError: except ImportError:
from ConfigParser import RawConfigParser from ConfigParser import RawConfigParser