2022-04-25 10:02:43 +02:00
|
|
|
try:
|
|
|
|
# not all objects get imported with __all__
|
2024-11-28 23:46:48 +01:00
|
|
|
from ConfigParser import *
|
2022-04-25 10:02:43 +02:00
|
|
|
from ConfigParser import Error, InterpolationMissingOptionError
|
|
|
|
except ImportError:
|
|
|
|
from configparser import *
|
|
|
|
from configparser import Error, InterpolationMissingOptionError
|