use the proper Python 3.x name for [Safe]ConfigParser

This commit is contained in:
Martin A. Brown 2016-03-14 20:11:04 -07:00
parent def752760e
commit 5af0c2a955
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ CLISEP = CFGSEP = '-' # -- dash -
MULTIVALUESEP = ','
try:
from configparser import SafeConfigParser as ConfigParser
from configparser import ConfigParser as ConfigParser
except ImportError:
from ConfigParser import SafeConfigParser as ConfigParser