2020-07-24 12:14:48 +02:00
|
|
|
try:
|
|
|
|
|
from ConfigParser import *
|
|
|
|
|
# not all objects get imported with __all__
|
|
|
|
|
from ConfigParser import Error, InterpolationMissingOptionError
|
|
|
|
|
except ImportError:
|
|
|
|
|
from configparser import *
|
|
|
|
|
from configparser import Error, InterpolationMissingOptionError
|